Share via


ReportRun.title Method

Definition

Overloads

title()

Gets or sets the print job description.

title(String)

title()

Gets or sets the print job description.

public:
 virtual System::String ^ title();
public virtual string title ();
abstract member title : unit -> string
override this.title : unit -> string
Public Overridable Function title () As String

Returns

A string that contains the job description.

Remarks

If reports are written to the printArchive object, the print job description is stored in the jobDescription field of the printJobHeader table. If the report is previewed, the print job description is used as the caption. This method is not called by the kernel during the execution of a report. Therefore, overriding the method will have no effect.

Applies to

title(String)

public:
 virtual System::String ^ title(System::String ^ _title);
public virtual string title (string _title);
abstract member title : string -> string
override this.title : string -> string
Public Overridable Function title (_title As String) As String

Parameters

_title
String

The new printJobDescription value; optional.

Returns

Applies to