ElementFactoryGetArgs.Data Property

Definition

Gets or sets the data item for which an appropriate element tree should be realized when calling GetElement.

public:
 property Platform::Object ^ Data { Platform::Object ^ get(); void set(Platform::Object ^ value); };
IInspectable Data();

void Data(IInspectable value);
public object Data { get; set; }
var object = elementFactoryGetArgs.data;
elementFactoryGetArgs.data = object;
Public Property Data As Object

Property Value

Object

Platform::Object

IInspectable

A reference to the data item for which a UIElement should be realized.

Remarks

The implementation on DataTemplate for GetElement does not use the Data value.

However, DataTemplateSelector's implementation does use the Data value as the item argument when it invokes the SelectTemplate method.

Applies to

See also