Item

ShapeCollection indexer (1 of 2)

الحصول على كائن الشكل في الفهرس المحدد .

public Shape this[int index] { get; }
معاملوصف
index

أمثلة


[C#]
// احصل على الشكل
Shape shape = shapes[shapes.Count -1];

أنظر أيضا


ShapeCollection indexer (2 of 2)

الحصول على كائن الشكل بالشكل image

public Shape this[string name] { get; }
معاملوصف
name

أمثلة


[C#]
// إضافة شكل
shapes.AddRectangle(2, 0, 2, 0, 130, 130);
// احصل على الشكل
Shape shape1 = shapes["Rectangle 1"];
if(shape1 != null)
{
    // حصلت على الشكل المسمى "المستطيل 1".
}

أنظر أيضا