Share via


ReportDocument.ReportAppServer Property

Gets or sets the name of the Report Application Server (also know as the RAS Server).

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

Syntax

'Declaration

Public Overrideable Property ReportAppServer As String
public virtual string ReportAppServer {get; set;}

Example

This example sets the name of the Report Application Server.

'Declaration

      Private Sub SetRASName(ByVal myReportDocument As ReportDocument, ByVal myRASName As String)
        myReportDocument.ReportAppServer = myRASName
      End Sub
      
      private void SetRASName(ReportDocument reportDocument, string myRASName)
      {
        reportDocument.ReportAppServer = myRASName;
      }
      

Version Information

Crystal Reports Basic for Visual Studio 2008

Supported since: Crystal Reports .NET 10

See Also

Reference

ReportDocument Class
ReportDocument Members
CrystalDecisions.CrystalReports.Engine Namespace