CopyCommentsInRange
ShapeCollection.CopyCommentsInRange method
Aralıktaki tüm yorumları kopyalayın.
public void CopyCommentsInRange(ShapeCollection shapes, CellArea ca, int destRow, int destColumn)
Parametre | Tip | Tanım |
---|---|---|
shapes | ShapeCollection | Kaynak şekiller. |
ca | CellArea | Kaynak aralığı. |
destRow | Int32 | Hedef aralığı başlangıç satırı. |
destColumn | Int32 | Hedef aralığı başlangıç sütunu. |
Örnekler
[C#]
CommentCollection comments = workbook.Worksheets[0].Comments;
// A1 hücresine yorum ekle
int commentIndex = comments.Add(0, 0);
Comment comment = comments[commentIndex];
comment.Note = "First note.";
comment.Font.Name = "Times New Roman";
// B2 hücresine yorum ekle
comments.Add("B2");
comment = comments["B2"];
comment.Note = "Second note.";
CellArea area1 = new CellArea();
area1.StartColumn = 1;
area1.StartRow = 1;
area1.EndColumn = 5;
area1.EndRow = 4;
//kopyala
shapes.CopyCommentsInRange(shapes, area1, 5, 1);
Ayrıca bakınız
- struct CellArea
- class ShapeCollection
- ad alanı Aspose.Cells.Drawing
- toplantı Aspose.Cells