InternalMarginBottom

TextBox.InternalMarginBottom property

يحدد الهامش السفلي الداخلي بالنقاط للشكل.

public double InternalMarginBottom { get; set; }

ملاحظات

القيمة الافتراضية هي 1/20 بوصة.

أمثلة

يوضح كيفية تعيين الهوامش الداخلية لمربع النص.

Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);

// أدخل مربع نص آخر بهوامش محددة.
Shape textBoxShape = builder.InsertShape(ShapeType.TextBox, 100, 100);
TextBox textBox = textBoxShape.TextBox;
textBox.InternalMarginTop = 15;
textBox.InternalMarginBottom = 15;
textBox.InternalMarginLeft = 15;
textBox.InternalMarginRight = 15;

builder.MoveTo(textBoxShape.LastParagraph);
builder.Write("Text placed according to textbox margins.");

doc.Save(ArtifactsDir + "Shape.TextBoxMargins.docx");

أنظر أيضا