Indexes Property (PropertyValue)
Returns valid indexes. It can be used with PropertyValue::operator [];
public int[] Indexes {get;}
PropertyValue oProperty = m_oTestProject.Pages[0].Functions[0].Properties[ FUNC_INDEXED_PROPERTY ];
if(oProperty.IsIndexed)
{
foreach ( int index in oProperty.Indexes )
{
PropertyValue oPropertyElement = oProperty[ index ];
string sProperty = oPropertyElement.ToString();
}
}