DocumentProperty.IsComposite 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 value indicating whether this property value is composite.
Namespace: Microsoft.Windows.Design.Documents.Trees
Assembly: Microsoft.Windows.Design.Markup (in Microsoft.Windows.Design.Markup.dll)
Syntax
'Declaration
Public MustOverride ReadOnly Property IsComposite As Boolean
'Usage
Dim instance As DocumentProperty
Dim value As Boolean
value = instance.IsComposite
public abstract bool IsComposite { get; }
public:
virtual property bool IsComposite {
bool get () abstract;
}
public abstract function get IsComposite () : boolean
Property Value
Type: System.Boolean
true if the property value is composite.
Remarks
This property can only be false if the property is not a collection and the value can be losslessly converted into a string. If the value of the property is not composite, it can be accessed through the Value property. If the value is composite, it can be accessed through the Items property. If the value type is not a collection then Items will only return one item. Null values are not represented because if the value is nulla null reference (Nothing in Visual Basic), the property would not be present in the Properties enumeration of the DocumentItem.
.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