PropertyValue.CreateInspectable(Object) Method
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.
Supplies the property value representation of an inspectable object. Since an object is a reference type, it is also a valid property value and does not need to be boxed. Instead, this method returns the object provided without modification. An object can be set as a property value without first calling this method.
public:
static Platform::Object ^ CreateInspectable(Platform::Object ^ value);
static IInspectable CreateInspectable(IInspectable const& value);
public static object CreateInspectable(object value);
function createInspectable(value)
Public Shared Function CreateInspectable (value As Object) As Object
Parameters
- value
-
Object
Platform::Object
IInspectable
The object to store in the property value. The value must be non-null.
Returns
The property value.