MarkupProperty.Items Property

Definition

When overridden in a derived class, gets the items that make up the value of this property.

public:
 abstract property System::Collections::Generic::IEnumerable<System::Windows::Markup::Primitives::MarkupObject ^> ^ Items { System::Collections::Generic::IEnumerable<System::Windows::Markup::Primitives::MarkupObject ^> ^ get(); };
public abstract System.Collections.Generic.IEnumerable<System.Windows.Markup.Primitives.MarkupObject> Items { get; }
member this.Items : seq<System.Windows.Markup.Primitives.MarkupObject>
Public MustOverride ReadOnly Property Items As IEnumerable(Of MarkupObject)

Property Value

The items that make up the value of this property.

Remarks

If the property is not an enumeration, only one item will be returned.

If the property is an enumeration, or enumerable, all the items will be returned.

At least one item is always returned, because MarkupObject will not create a MarkupProperty for properties with no items.

Applies to