CopyInRange

ShapeCollection.CopyInRange method

انسخ الأشكال الموجودة في النطاق إلى النطاق الوجهة .

public void CopyInRange(ShapeCollection sourceShapes, CellArea ca, int destRow, int destColumn, 
    bool isContained)
معامليكتبوصف
sourceShapesShapeCollectionأشكال المصدر.
caCellAreaنطاق المصدر.
destRowInt32فهرس صف الإرسال للنطاق المُصَدِّر.
destColumnInt32عمود الوجهة من نطاق الوجهة.
isContainedBooleanسواء نسخ الأشكال الموجودة في النطاق فقط. إذا كان صحيحًا ، فقم بنسخ الأشكال الموجودة في النطاق فقط. وإلا فإنه يعمل مثل MS Office.

أمثلة


[C#]
// إضافة شكل
shapes.AddRectangle(2, 0, 2, 0, 130, 130);
CellArea area2 = new CellArea();
area2.StartColumn = 1;
area2.StartRow = 1;
area2.EndColumn = 5;
area2.EndRow = 11;

//ينسخ
shapes.CopyInRange(shapes, area2, 12, 1, false);

أنظر أيضا