Exemplo n.º 1
0
 public void Remove( PropertyItem item )
 {
     List.Remove( item );
 }
Exemplo n.º 2
0
 public void Insert( int index, PropertyItem item )
 {
     List.Insert( index, item );
 }
Exemplo n.º 3
0
 public Boolean Contains( PropertyItem item )
 {
     return List.Contains( item );
 }
Exemplo n.º 4
0
 public int IndexOf( PropertyItem item )
 {
     return List.IndexOf( item );
 }
Exemplo n.º 5
0
 public int Add( PropertyItem item )
 {
     return List.Add( item );
 }