Indicates if Value contains single item data.
true if Value is the single item; otherwise, false.
Use this property before reading Value for correct convertion Value object to needed type: single item or array.
Example:
if(property.Type==Int16Array)
{
if(property.IsSingleItemValue)
{
Int16 val = (Int16)property.Value;
}
else
{
Int16[] val = (Int16[])property.Value;
}
}
ImagePropertyItem Class | ElementIT.ImageProperties Namespace