ElementFactoryGetArgs.Data Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
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.