VAGSuite.CellHelperCollection.GetProperties C# (CSharp) Method

GetProperties() public method

Called to get the properties of this type.
public GetProperties ( ) : PropertyDescriptorCollection
return System.ComponentModel.PropertyDescriptorCollection
        public PropertyDescriptorCollection GetProperties()
        {
            // Create a collection object to hold property descriptors
            PropertyDescriptorCollection pds = new PropertyDescriptorCollection(null);

            // Iterate the list of employees
            for (int i = 0; i < this.List.Count; i++)
            {
                // Create a property descriptor for the employee item and add to the property descriptor collection
                CellHelperCollectionPropertyDescriptor pd = new CellHelperCollectionPropertyDescriptor(this, i);
                pds.Add(pd);
            }
            // return the property descriptor collection
            return pds;
        }

Same methods

CellHelperCollection::GetProperties ( Attribute attributes ) : PropertyDescriptorCollection