ModelItem.ModelItems Property

 

Applies To: SQL Server 2016 Preview

Gets the child model items for this model item.

Namespace:   ReportService2005
Assembly:  ReportService2005 (in ReportService2005.dll)

Syntax

public ModelItem[] ModelItems { get; set; }
public:
property array<ModelItem^>^ ModelItems {
    array<ModelItem^>^ get();
    void set(array<ModelItem^>^ value);
}
member ModelItems : ModelItem[] with get, set
Public Property ModelItems As ModelItem()

Property Value

Type: ReportService2005.ModelItem[]

An array of ModelItem objects.

Remarks

This call is not recursive and returns a shallow array of child model items.

See Also

ModelItem Class
ReportService2005 Namespace

Return to top