مشاركة عبر


RichTextContentControl.PlaceholderText الخاصية

الحصول أو تعيين نص هو dهوplayed في RichTextContentControlحتى نص هو تم تغييرهها بواسطة إجراء مستخدم أو بعض غير ذلك عملية.

مساحة الاسم:  Microsoft.Office.Tools.Word
التجميع:  Microsoft.Office.Tools.Word (في Microsoft.Office.Tools.Word.dll)

بناء الجملة

'إقرار
Property PlaceholderText As String
    Get
    Set
string PlaceholderText { get; set; }

قيمة الخاصية

النوع: System.String
نص الذي هو dهوplayed في عنصر التحكم إلى أن نص هو تم تغييرهها بواسطة إجراء مستخدم أو عملية غير ذلك.

ملاحظات

نص العنصر النائب هو dهوplayed حتى يقوم مستخدم بتحرير عنصر التحكم، وعنصر التحكم هو معبأ بالبيانات من مصدر بيانات، أو قم بتم الحذف محتويات عنصر التحكم.

لتعيين العنصر النائب لنص التي هو في على Microsoft.Office.Interop.Word.BuildingBlockأو Range، استخدم SetPlaceholderTextالأسلوب.

أمثلة

يلي تعليمات برمجية في المثال إضافة جديد RichTextContentControlإلى بداية مستند. يعين المثال PlaceholderTextخاصية إلى سلسلة التي يطالب مستخدم إلى اكتب به أو الاسم أول.

Th هو الإصدار هو لتخصيص المستوى مستند. إلى استخدام هذا الرمز، قم بلصقه في إلى ThisDocumentالفئة في مشروع، واستدعاء AddRichTextControlAtSelectionأسلوب من ThisDocument_Startupالأسلوب.

Dim richTextControl1 As Microsoft.Office.Tools.Word.RichTextContentControl

Private Sub AddRichTextControlAtSelection()
    Me.Paragraphs(1).Range.InsertParagraphBefore()
    Me.Paragraphs(1).Range.Select()
    richTextControl1 = Me.Controls.AddRichTextContentControl("richTextControl1")
    richTextControl1.PlaceholderText = "Enter your first name"
End Sub
private Microsoft.Office.Tools.Word.RichTextContentControl richTextControl1;

private void AddRichTextControlAtSelection()
{
    this.Paragraphs[1].Range.InsertParagraphBefore();
    this.Paragraphs[1].Range.Select();

    richTextControl1 = this.Controls.AddRichTextContentControl("richTextControl1");
    richTextControl1.PlaceholderText = "Enter your first name";
}

Th هو الإصدار هو للوظيفة الإضافية المستوى تطبيق. إلى استخدام هذا الرمز، قم بلصقه في إلى ThisAddInالفئة في مشروع، واستدعاء AddRichTextControlAtSelectionأسلوب من ThisAddIn_Startupالأسلوب.

Dim richTextControl1 As Microsoft.Office.Tools.Word.RichTextContentControl

Private Sub AddRichTextControlAtSelection()
    If Me.Application.ActiveDocument Is Nothing Then
        Return
    End If

    Dim vstoDoc As Document = Globals.Factory.GetVstoObject(Me.Application.ActiveDocument)
    vstoDoc.Paragraphs(1).Range.InsertParagraphBefore()
    vstoDoc.Paragraphs(1).Range.Select()
    richTextControl1 = vstoDoc.Controls.AddRichTextContentControl("richTextControl1")
    richTextControl1.PlaceholderText = "Enter your first name"
End Sub
private Microsoft.Office.Tools.Word.RichTextContentControl richTextControl1;

private void AddRichTextControlAtSelection()
{
    if (this.Application.ActiveDocument == null)
        return;

    Document vstoDoc = Globals.Factory.GetVstoObject(this.Application.ActiveDocument);
    vstoDoc.Paragraphs[1].Range.InsertParagraphBefore();
    vstoDoc.Paragraphs[1].Range.Select();

    richTextControl1 = vstoDoc.Controls.AddRichTextContentControl("richTextControl1");
    richTextControl1.PlaceholderText = "Enter your first name";
}

أمن NET Framework.

راجع أيضًَا

المرجع

RichTextContentControl واجهة

RichTextContentControl الأعضاء

Microsoft.Office.Tools.Word مساحة الاسم