IPropertyValue
IPropertyValue
IPropertyValue
IPropertyValue
Interface
Definition
Represents a value in a property store. You can't implement this interface, see Remarks.
public : interface IPropertyValuepublic interface IPropertyValuePublic Interface IPropertyValue// You can use this interface in JavaScript.
- Attributes
| Device family |
Windows 10 (introduced v10.0.10240.0)
|
| API contract |
Windows.Foundation.FoundationContract (introduced v1)
|
Remarks
The IPropertyValue interface is a store for values whose type is not known until runtime.
To obtain the value stored in an IPropertyValue object, when the type of the stored property is not known ahead of time, you should first determine the stored type from the Type property and then call the appropriate IPropertyValue method for the type.
If the type is known ahead of time, you can the type access method of IPropertyValue interface directory and check for the return value to verify type returned was what is expected. If the type returned does not match the value of the Type property then the method fails with the TYPE_E_TYPEMISMATCH error.
You can't implement the IPropertyValue interface or include it in a signature. IPropertyValue is mainly an internal implementation detail of how the Windows Runtime implements boxing and nullable values.
Properties
IsNumericScalar IsNumericScalar IsNumericScalar IsNumericScalar
Gets a value that indicates whether the property value is a scalar value.
public : PlatForm::Boolean IsNumericScalar { get; }public bool IsNumericScalar { get; }Public ReadOnly Property IsNumericScalar As bool// You can use this property in JavaScript.
- Value
- PlatForm::Boolean bool bool bool
True if the value is scalar; otherwise false.
Methods
GetBoolean() GetBoolean() GetBoolean() GetBoolean()
Returns the Boolean value stored as a property value.
public : PlatForm::Boolean GetBoolean()public bool GetBoolean()Public Function GetBoolean() As bool// You can use this method in JavaScript.
The value.
GetBooleanArray(Boolean[]) GetBooleanArray(Boolean[]) GetBooleanArray(Boolean[]) GetBooleanArray(Boolean[])
Returns the array of Boolean values stored as a property value.
public : void GetBooleanArray(bool[] value)public void GetBooleanArray(Boolean[] value)Public Function GetBooleanArray(value As Boolean[]) As void// You can use this method in JavaScript.
- value
- bool[] Boolean[] Boolean[] Boolean[]
The array of values.
GetChar16() GetChar16() GetChar16() GetChar16()
Returns the Unicode character stored as a property value.
public : char GetChar16()public char GetChar16()Public Function GetChar16() As char// You can use this method in JavaScript.
The value.
GetChar16Array(Char[]) GetChar16Array(Char[]) GetChar16Array(Char[]) GetChar16Array(Char[])
Returns the array of Unicode characters stored as a property value.
public : void GetChar16Array(Char[] value)public void GetChar16Array(Char[] value)Public Function GetChar16Array(value As Char[]) As void// You can use this method in JavaScript.
- value
- Char[] Char[] Char[] Char[]
The array of values.
GetDateTime() GetDateTime() GetDateTime() GetDateTime()
Returns the date and time value stored as a property value.
public : DateTime GetDateTime()public DateTimeOffset GetDateTime()Public Function GetDateTime() As DateTimeOffset// You can use this method in JavaScript.
The value.
GetDateTimeArray(DateTime[]) GetDateTimeArray(DateTime[]) GetDateTimeArray(DateTime[]) GetDateTimeArray(DateTime[])
Returns the array of date and time values stored as a property value.
public : void GetDateTimeArray(DateTime[] value)public void GetDateTimeArray(DateTime[] value)Public Function GetDateTimeArray(value As DateTime[]) As void// You can use this method in JavaScript.
- value
- DateTime[] DateTime[] DateTime[] DateTime[]
The array of values.
GetDouble() GetDouble() GetDouble() GetDouble()
Returns the floating-point value stored as a property value.
public : double GetDouble()public double GetDouble()Public Function GetDouble() As double// You can use this method in JavaScript.
The value.
GetDoubleArray(Double[]) GetDoubleArray(Double[]) GetDoubleArray(Double[]) GetDoubleArray(Double[])
Returns the array of floating-point values stored as a property value.
public : void GetDoubleArray(double[] value)public void GetDoubleArray(Double[] value)Public Function GetDoubleArray(value As Double[]) As void// You can use this method in JavaScript.
- value
- double[] Double[] Double[] Double[]
The array of values.
GetGuid() GetGuid() GetGuid() GetGuid()
Returns the GUID value stored as a property value.
public : PlatForm::Guid GetGuid()public Guid GetGuid()Public Function GetGuid() As Guid// You can use this method in JavaScript.
The value.
GetGuidArray(Guid[]) GetGuidArray(Guid[]) GetGuidArray(Guid[]) GetGuidArray(Guid[])
Returns the array of GUID values stored as a property value.
public : void GetGuidArray(PlatForm::Guid[] value)public void GetGuidArray(Guid[] value)Public Function GetGuidArray(value As Guid[]) As void// You can use this method in JavaScript.
- value
- PlatForm::Guid[] Guid[] Guid[] Guid[]
The array of values.
GetInspectableArray(Object[]) GetInspectableArray(Object[]) GetInspectableArray(Object[]) GetInspectableArray(Object[])
Returns the array of inspectable objects stored as a property value.
public : void GetInspectableArray(PlatForm::Object[] value)public void GetInspectableArray(Object[] value)Public Function GetInspectableArray(value As Object[]) As void// You can use this method in JavaScript.
- value
- PlatForm::Object[] Object[] Object[] Object[]
The array of objects.
GetInt16() GetInt16() GetInt16() GetInt16()
Returns the integer value stored as a property value.
public : short GetInt16()public short GetInt16()Public Function GetInt16() As short// You can use this method in JavaScript.
The value.
GetInt16Array(Int16[]) GetInt16Array(Int16[]) GetInt16Array(Int16[]) GetInt16Array(Int16[])
Returns the array of integer values stored as a property value.
public : void GetInt16Array(short[] value)public void GetInt16Array(Int16[] value)Public Function GetInt16Array(value As Int16[]) As void// You can use this method in JavaScript.
- value
- short[] Int16[] Int16[] Int16[]
The array of values.
GetInt32() GetInt32() GetInt32() GetInt32()
Returns the integer value stored as a property value.
public : int GetInt32()public int GetInt32()Public Function GetInt32() As int// You can use this method in JavaScript.
The value.
GetInt32Array(Int32[]) GetInt32Array(Int32[]) GetInt32Array(Int32[]) GetInt32Array(Int32[])
Returns the array of integer values stored as a property value.
public : void GetInt32Array(int[] value)public void GetInt32Array(Int32[] value)Public Function GetInt32Array(value As Int32[]) As void// You can use this method in JavaScript.
- value
- int[] Int32[] Int32[] Int32[]
The array of values.
GetInt64() GetInt64() GetInt64() GetInt64()
Returns the integer value stored as a property value.
public : long GetInt64()public long GetInt64()Public Function GetInt64() As long// You can use this method in JavaScript.
The value.
GetInt64Array(Int64[]) GetInt64Array(Int64[]) GetInt64Array(Int64[]) GetInt64Array(Int64[])
Returns the array of integer values stored as a property value.
public : void GetInt64Array(long[] value)public void GetInt64Array(Int64[] value)Public Function GetInt64Array(value As Int64[]) As void// You can use this method in JavaScript.
- value
- long[] Int64[] Int64[] Int64[]
The array of values.
GetPointArray(Point[]) GetPointArray(Point[]) GetPointArray(Point[]) GetPointArray(Point[])
Returns the array of point structures stored as a property value.
public : void GetPointArray(Point[] value)public void GetPointArray(Point[] value)Public Function GetPointArray(value As Point[]) As void// You can use this method in JavaScript.
- value
- Point[] Point[] Point[] Point[]
The array of structures.
GetRectArray(Rect[]) GetRectArray(Rect[]) GetRectArray(Rect[]) GetRectArray(Rect[])
Returns the array of rectangle structures stored as a property value.
public : void GetRectArray(Rect[] value)public void GetRectArray(Rect[] value)Public Function GetRectArray(value As Rect[]) As void// You can use this method in JavaScript.
- value
- Rect[] Rect[] Rect[] Rect[]
The array of structures.
GetSingle() GetSingle() GetSingle() GetSingle()
Returns the floating-point value stored as a property value.
public : float GetSingle()public float GetSingle()Public Function GetSingle() As float// You can use this method in JavaScript.
The value.
GetSingleArray(Single[]) GetSingleArray(Single[]) GetSingleArray(Single[]) GetSingleArray(Single[])
Returns the array of floating-point values stored as a property value.
public : void GetSingleArray(float[] value)public void GetSingleArray(Single[] value)Public Function GetSingleArray(value As Single[]) As void// You can use this method in JavaScript.
- value
- float[] Single[] Single[] Single[]
The array of values.
GetSizeArray(Size[]) GetSizeArray(Size[]) GetSizeArray(Size[]) GetSizeArray(Size[])
Returns the array of size structures stored as a property value.
public : void GetSizeArray(Size[] value)public void GetSizeArray(Size[] value)Public Function GetSizeArray(value As Size[]) As void// You can use this method in JavaScript.
- value
- Size[] Size[] Size[] Size[]
The array of structures.
GetString() GetString() GetString() GetString()
Returns the string value stored as a property value.
public : PlatForm::String GetString()public string GetString()Public Function GetString() As string// You can use this method in JavaScript.
The value.
GetStringArray(String[]) GetStringArray(String[]) GetStringArray(String[]) GetStringArray(String[])
Returns the array of string values stored as a property value.
public : void GetStringArray(PlatForm::String[] value)public void GetStringArray(String[] value)Public Function GetStringArray(value As String[]) As void// You can use this method in JavaScript.
- value
- PlatForm::String[] String[] String[] String[]
The array of values.
GetTimeSpan() GetTimeSpan() GetTimeSpan() GetTimeSpan()
Returns the time interval value stored as a property value.
public : TimeSpan GetTimeSpan()public TimeSpan GetTimeSpan()Public Function GetTimeSpan() As TimeSpan// You can use this method in JavaScript.
The value.
GetTimeSpanArray(TimeSpan[]) GetTimeSpanArray(TimeSpan[]) GetTimeSpanArray(TimeSpan[]) GetTimeSpanArray(TimeSpan[])
Returns the array of time interval values stored as a property value.
public : void GetTimeSpanArray(TimeSpan[] value)public void GetTimeSpanArray(TimeSpan[] value)Public Function GetTimeSpanArray(value As TimeSpan[]) As void// You can use this method in JavaScript.
- value
- TimeSpan[] TimeSpan[] TimeSpan[] TimeSpan[]
The array of values.
GetUInt16() GetUInt16() GetUInt16() GetUInt16()
Returns the unsigned integer value stored as a property value.
public : ushort GetUInt16()public ushort GetUInt16()Public Function GetUInt16() As ushort// You can use this method in JavaScript.
The value.
GetUInt16Array(UInt16[]) GetUInt16Array(UInt16[]) GetUInt16Array(UInt16[]) GetUInt16Array(UInt16[])
Returns the array of unsigned integer values stored as a property value.
public : void GetUInt16Array(unsigned short[] value)public void GetUInt16Array(UInt16[] value)Public Function GetUInt16Array(value As UInt16[]) As void// You can use this method in JavaScript.
- value
- unsigned short[] UInt16[] UInt16[] UInt16[]
The array of values.
GetUInt32() GetUInt32() GetUInt32() GetUInt32()
Returns the unsigned integer value stored as a property value.
public : unsigned int GetUInt32()public uint GetUInt32()Public Function GetUInt32() As uint// You can use this method in JavaScript.
The value.
GetUInt32Array(UInt32[]) GetUInt32Array(UInt32[]) GetUInt32Array(UInt32[]) GetUInt32Array(UInt32[])
Returns the array of unsigned integer values stored as a property value.
public : void GetUInt32Array(unsigned int[] value)public void GetUInt32Array(UInt32[] value)Public Function GetUInt32Array(value As UInt32[]) As void// You can use this method in JavaScript.
- value
- unsigned int[] UInt32[] UInt32[] UInt32[]
The array of values.
GetUInt64() GetUInt64() GetUInt64() GetUInt64()
Returns the unsigned integer value stored as a property value.
public : ulong GetUInt64()public ulong GetUInt64()Public Function GetUInt64() As ulong// You can use this method in JavaScript.
The value.
GetUInt64Array(UInt64[]) GetUInt64Array(UInt64[]) GetUInt64Array(UInt64[]) GetUInt64Array(UInt64[])
Returns the array of unsigned integer values stored as a property value.
public : void GetUInt64Array(unsigned __int64 value)public void GetUInt64Array(UInt64[] value)Public Function GetUInt64Array(value As UInt64[]) As void// You can use this method in JavaScript.
- value
- unsigned __int64 UInt64[] UInt64[] UInt64[]
The array of values.
GetUInt8() GetUInt8() GetUInt8() GetUInt8()
Returns the byte value stored as a property value.
public : byte GetUInt8()public byte GetUInt8()Public Function GetUInt8() As byte// You can use this method in JavaScript.
The value.
GetUInt8Array(Byte[]) GetUInt8Array(Byte[]) GetUInt8Array(Byte[]) GetUInt8Array(Byte[])
Returns the array of byte values stored as a property value.
public : void GetUInt8Array(Byte[] value)public void GetUInt8Array(Byte[] value)Public Function GetUInt8Array(value As Byte[]) As void// You can use this method in JavaScript.
- value
- Byte[] Byte[] Byte[] Byte[]
The array of values.