Share via


Report.newmethod Method

Definition

Overloads

newmethod()

Initializes a new instance of the TreeNode class.

newmethod(Object)
newmethod(Object, Object)

newmethod()

Initializes a new instance of the TreeNode class.

protected:
 override void newmethod();
protected override void newmethod ();
override this.newmethod : unit -> unit
Protected Overrides Sub newmethod ()

Remarks

The parameter format is as follows:

(): Creates a report object that is not present in the AOT.

(c): Creates a report object that is not present in the AOT, the contents of which are given by the container c.

("existingReportName"): Retrieves a report object that is found in the AOT.

("nonExistingReportName"): Creates a report object in the AOT.

("nonExistingReportName", c): Creates a report object in the AOT, the contents of which are given by the container c.

The container c should be created by the pack method.

Applies to

newmethod(Object)

public:
 void newmethod(System::Object ^ obj1);
public void newmethod (object obj1);
override this.newmethod : obj -> unit
Public Sub newmethod (obj1 As Object)

Parameters

obj1
Object

Applies to

newmethod(Object, Object)

public:
 void newmethod(System::Object ^ _nameOrContainer, System::Object ^ _container);
public void newmethod (object _nameOrContainer, object _container);
override this.newmethod : obj * obj -> unit
Public Sub newmethod (_nameOrContainer As Object, _container As Object)

Parameters

_nameOrContainer
Object
_container
Object

Applies to