DocumentItem.Properties 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 the properties of the item.
Namespace: Microsoft.Windows.Design.Documents.Trees
Assembly: Microsoft.Windows.Design.Markup (in Microsoft.Windows.Design.Markup.dll)
Syntax
'Declaration
Public MustOverride ReadOnly Property Properties As IEnumerable(Of DocumentProperty)
'Usage
Dim instance As DocumentItem
Dim value As IEnumerable(Of DocumentProperty)
value = instance.Properties
public abstract IEnumerable<DocumentProperty> Properties { get; }
public:
virtual property IEnumerable<DocumentProperty^>^ Properties {
IEnumerable<DocumentProperty^>^ get () abstract;
}
public abstract function get Properties () : IEnumerable<DocumentProperty>
Property Value
Type: System.Collections.Generic.IEnumerable<DocumentProperty>
An enumerable of the properties of the item.
Remarks
The returned properties are only the properties that are in the persistent image of the item. All properties still have their default values. Values that are calculated, or otherwise come from another source, are not returned as part of this enumeration.
.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