עבודה עם SMS
In In In Aspose.Words, The The TextBox הכיתה משמשת כדי לציין כיצד טקסט מוצג בתוך צורה. הוא חושף נכס ציבורי בשם Parent כדי לקבל את הצורה של ההורה עבור תיבת הטקסט כך הלקוח יכול למצוא את המקושר Shape מתוך קשורות TextBox.
יצירת קישור
The The The TextBox מעמד מספק IsValidLinkTarget שיטה כדי לבדוק אם TextBox יכול להיות קשור למטרה Textbox.
הדוגמה הבאה מראה כיצד לבדוק אם TextBox
ניתן לקשר לתיבת טקסט היעד:
// For complete examples and data files, please go to https://github.com/aspose-words/Aspose.Words-for-.NET | |
Document doc = new Document(); | |
Shape shape1 = new Shape(doc, ShapeType.TextBox); | |
Shape shape2 = new Shape(doc, ShapeType.TextBox); | |
TextBox textBox1 = shape1.TextBox; | |
TextBox textBox2 = shape2.TextBox; | |
if (textBox1.IsValidLinkTarget(textBox2)) | |
textBox1.Next = textBox2; |
בדוק טקסט Box Sequence
ישנן מספר דרכים להציג טקסט בצורה. The The The TextBox יכול להיות ראש, ביניים או Tail של רצף.
דוגמה לקוד הבא מראה כיצד לבדוק אם TextBox הוא ראש, Tail או Middle of theרצף:
// For complete examples and data files, please go to https://github.com/aspose-words/Aspose.Words-for-.NET | |
Document doc = new Document(); | |
Shape shape = new Shape(doc, ShapeType.TextBox); | |
TextBox textBox = shape.TextBox; | |
if ((textBox.Next != null) && (textBox.Previous == null)) | |
{ | |
Console.WriteLine("The head of the sequence"); | |
} | |
if ((textBox.Next != null) && (textBox.Previous != null)) | |
{ | |
Console.WriteLine("The Middle of the sequence."); | |
} | |
if ((textBox.Next == null) && (textBox.Previous != null)) | |
{ | |
Console.WriteLine("The Tail of the sequence."); | |
} |
שוברים קישור
באמצעות BreakForwardLink שיטה שאתה יכול לשבור את הקישור הבא TextBox.
דוגמה לקוד הבא מראה כיצד לשבור קישור TextBox:
// For complete examples and data files, please go to https://github.com/aspose-words/Aspose.Words-for-.NET | |
Document doc = new Document(); | |
Shape shape = new Shape(doc, ShapeType.TextBox); | |
TextBox textBox = shape.TextBox; | |
// Break a forward link | |
textBox.BreakForwardLink(); | |
// Break a forward link by setting a null | |
textBox.Next = null; | |
// Break a link, which leads to this textbox | |
if (textBox.Previous != null) | |
textBox.Previous.BreakForwardLink(); |