WrapSide
İçindekiler
[
Saklamak
]WrapSide enumeration
Metnin şeklin veya resmin hangi taraflarını saracağını belirtir.
public enum WrapSide
değerler
İsim | Değer | Tanım |
---|---|---|
Both | 0 | Belge metni şeklin her iki tarafında da kaydırılır. |
Left | 1 | Belge metni yalnızca şeklin sol tarafında kaydırılır. Şeklin sağında metin içermeyen bir alan bulunmaktadır. |
Right | 2 | Belge metni yalnızca şeklin sağ tarafında kaydırılır. Şeklin sol tarafında metin içermeyen bir alan bulunmaktadır. |
Largest | 3 | Belge metni, şeklin sayfa kenar boşluğundan en uzak olan tarafına kaydırılır ve şeklin diğer tarafında metinsiz alan kalır. |
Default | 0 | Varsayılan değer:Both . |
Örnekler
Tüm metin kutusu şekillerinin görüntü şekilleriyle nasıl değiştirileceğini gösterir.
Document doc = new Document(MyDir + "Textboxes in drawing canvas.docx");
Shape[] shapes = doc.GetChildNodes(NodeType.Shape, true).OfType<Shape>().ToArray();
Assert.AreEqual(3, shapes.Count(s => s.ShapeType == ShapeType.TextBox));
Assert.AreEqual(1, shapes.Count(s => s.ShapeType == ShapeType.Image));
foreach (Shape shape in shapes)
{
if (shape.ShapeType == ShapeType.TextBox)
{
Shape replacementShape = new Shape(doc, ShapeType.Image);
replacementShape.ImageData.SetImage(ImageDir + "Logo.jpg");
replacementShape.Left = shape.Left;
replacementShape.Top = shape.Top;
replacementShape.Width = shape.Width;
replacementShape.Height = shape.Height;
replacementShape.RelativeHorizontalPosition = shape.RelativeHorizontalPosition;
replacementShape.RelativeVerticalPosition = shape.RelativeVerticalPosition;
replacementShape.HorizontalAlignment = shape.HorizontalAlignment;
replacementShape.VerticalAlignment = shape.VerticalAlignment;
replacementShape.WrapType = shape.WrapType;
replacementShape.WrapSide = shape.WrapSide;
shape.ParentNode.InsertAfter(replacementShape, shape);
shape.Remove();
}
}
shapes = doc.GetChildNodes(NodeType.Shape, true).OfType<Shape>().ToArray();
Assert.AreEqual(0, shapes.Count(s => s.ShapeType == ShapeType.TextBox));
Assert.AreEqual(4, shapes.Count(s => s.ShapeType == ShapeType.Image));
doc.Save(ArtifactsDir + "Shape.ReplaceTextboxesWithImages.docx");
Ayrıca bakınız
- property WrapSide
- ad alanı Aspose.Words.Drawing
- toplantı Aspose.Words