Item

PictureCollection indexer

يحصل على ملفPicture عنصر في الفهرس المحدد.

public Picture this[int index] { get; }
معاملوصف
indexالفهرس الصفري للعنصر.

قيمة الإرجاع

العنصر في الفهرس المحدد.

أمثلة


[C#]
// الحصول على مجموعة الصور
// PictureCollection pictures = workbook.Worksheets [0]. الصور ;
// إضافة صورة
int index = pictures.Add(1, 1, "image.png");
//احصل على الصورة
Picture pic = pictures[index];

أنظر أيضا