示例#1
0
 public void SetAt(int index, ImageLayer newValue)
 {
     this[index] = newValue;
 }
示例#2
0
 protected ImageLayer(ImageLayer copyMe)
 {
     this._width     = copyMe._width;
     this._height    = copyMe._height;
     this.properties = (LayerProperties)copyMe.properties.Clone();
 }