public void Remove( PropertyItem item )
 {
     List.Remove( item );
 }
 public void Insert( int index, PropertyItem item )
 {
     List.Insert( index, item );
 }
 public Boolean Contains( PropertyItem item )
 {
     return List.Contains( item );
 }
 public int IndexOf( PropertyItem item )
 {
     return List.IndexOf( item );
 }
 public int Add( PropertyItem item )
 {
     return List.Add( item );
 }