DocumentProperty.Items Property
This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.
When overridden in a derived class, gets a list of items contained by this property.
Namespace: Microsoft.Windows.Design.Documents.Trees
Assembly: Microsoft.Windows.Design.Markup (in Microsoft.Windows.Design.Markup.dll)
Syntax
'Declaration
Public MustOverride ReadOnly Property Items As IEnumerable(Of DocumentItem)
'Usage
Dim instance As DocumentProperty
Dim value As IEnumerable(Of DocumentItem)
value = instance.Items
public abstract IEnumerable<DocumentItem> Items { get; }
public:
virtual property IEnumerable<DocumentItem^>^ Items {
IEnumerable<DocumentItem^>^ get () abstract;
}
public abstract function get Items () : IEnumerable<DocumentItem>
Property Value
Type: System.Collections.Generic.IEnumerable<DocumentItem>
A list of items contained by this property.
Remarks
If the property is not a collection, only one item will be returned, which will represent the value of the property.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
See Also
Reference
Microsoft.Windows.Design.Documents.Trees Namespace