Exemplo n.º 1
0
 /// <summary>
 ///
 /// </summary>
 /// <remarks>
 /// Use the IGetSetHelper if available
 /// </remarks>
 /// <param name="component"></param>
 /// <returns></returns>
 public object[] GetPropertyValues(object component)
 {
     if (getset == null)
     {
         object[] values = new object[propertySpan];
         for (int i = 0; i < propertySpan; i++)
         {
             values[i] = GetPropertyValue(component, i);
         }
         return(values);
     }
     else
     {
         return(getset.GetPropertyValues(component));
     }
 }