コード例 #1
0
ファイル: ImageLayerList.cs プロジェクト: w8w8w8/Photo.Net
 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();
 }