Пример #1
0
 public ItemImage(string caption, int width, int height, Stream stream, ItemImageInfo.MediaType type)
 {
     Caption = caption;
     Width   = width;
     Height  = height;
     Stream  = stream;
     Type    = type;
 }
Пример #2
0
 public ItemAlbum(string caption, int width, int height, Stream[] streams, ItemImageInfo.MediaType type)
 {
     Caption = caption;
     Width   = width;
     Height  = height;
     Streams = streams;
     Type    = type;
 }