共用方式為


PerspectiveCollection.Add 方法

定義

多載

Add()

使用產生的唯一名稱和識別碼,建立新的 Perspective 物件,然後將其新增至集合結尾,並傳回新建立的 Perspective。

Add(Perspective)

將指定的 Perspective 新增至集合的結尾。

Add(String)

使用指定的名稱,建立新的 Perspective 物件,然後將其新增至集合結尾,並傳回新建立的 Perspective。

Add(String, String)

使用指定的名稱和識別碼,建立新的 Perspective 物件,然後將其新增至集合結尾,並傳回新建立的 Perspective。

Add()

使用產生的唯一名稱和識別碼,建立新的 Perspective 物件,然後將其新增至集合結尾,並傳回新建立的 Perspective。

public Microsoft.AnalysisServices.Perspective Add ();
override this.Add : unit -> Microsoft.AnalysisServices.Perspective
Public Function Add () As Perspective

傳回

新建立的 Perspective 物件。

適用於

Add(Perspective)

將指定的 Perspective 新增至集合的結尾。

public int Add (Microsoft.AnalysisServices.Perspective item);
override this.Add : Microsoft.AnalysisServices.Perspective -> int
Public Function Add (item As Perspective) As Integer

參數

item
Perspective

要新增的 Perspective

傳回

以零起始的索引,其為 Perspective 新增至集合的位置。

例外狀況

  • 指定的項目為 Null 參考 (Visual Basic 中的 Nothing)。
  • 指定的項目已存在於集合中。
  • 指定的 Perspective 識別碼在集合中無效。
  • 指定的名稱 Perspective 在集合中無效。
  • 指定 Perspective 之 的相容性層級在集合中無效。

適用於

Add(String)

使用指定的名稱,建立新的 Perspective 物件,然後將其新增至集合結尾,並傳回新建立的 Perspective。

public Microsoft.AnalysisServices.Perspective Add (string name);
override this.Add : string -> Microsoft.AnalysisServices.Perspective
Public Function Add (name As String) As Perspective

參數

name
String

Perspective 物件的名稱。

傳回

新建立的 Perspective 物件。

例外狀況

指定的名稱在集合中無效。

備註

Perspective 物件的識別碼會根據指定的名稱產生。

適用於

Add(String, String)

使用指定的名稱和識別碼,建立新的 Perspective 物件,然後將其新增至集合結尾,並傳回新建立的 Perspective。

public Microsoft.AnalysisServices.Perspective Add (string name, string id);
override this.Add : string * string -> Microsoft.AnalysisServices.Perspective
Public Function Add (name As String, id As String) As Perspective

參數

name
String

Perspective 物件的名稱。

id
String

Perspective 物件的識別碼。

傳回

新建立的 Perspective 物件。

例外狀況

  • 指定的名稱在集合中無效。
  • 指定的識別碼在集合中無效。

適用於