// Insert Text Form Field Aspose.Words.Fields.FormField text = builder.InsertTextInput("TextInput", Aspose.Words.Fields.TextFormFieldType.Regular, "", "Hello", 0); // Add line break builder.InsertBreak(Aspose.Words.BreakType.LineBreak); // Insert Checkbox Form Field Aspose.Words.Fields.Form...
Text Form Field - Inserts a Text Form field allowing users to insert text, numbers symbols and spaces. To add a text form field place the insertion point where you want the field to be placed and selectWord will insert the field { FORMTEXT } into the documentThese field codes cannot be...
WdTextboxTightWrap 指定Microsoft Office Word如何在文本框周围紧密环绕文本。 WdTextFormFieldType 指定文字型窗体域的类型。 WdTextOrientation 指定区域或选定内容中的文字方向。 WdTextOrientationHID 仅供内部使用。 WdTextureIndex 指定要用于所选项的底纹纹理。 WdThemeColorIndex 指定文档主题的主题颜色。 WdToaFor...
wdDialogFormFieldHelp (无) wdDialogFormFieldOptions Entry、 Exit、 Name、 Enable、 TextType、 TextWidth、 TextDefault、 TextFormat、 CheckSize、 CheckWidth、 CheckDefault、 Type、 OwnHelp、 HelpText、 OwnStat、 StatText、 Calculate wdDialogFrameSetProperties (无) wdDialogHelpAbout APPNAME、 APPCOPYR...
wdDialogInsertFormField Entry、 Exit、 Name、 Enable、 TextType、 TextWidth、 TextDefault、 TextFormat、 CheckSize、 CheckWidth、 CheckDefault、 Type、 OwnHelp、 HelpText、 OwnStat、 StatText、 Calculate wdDialogInsertHyperlink (無) wdDialogInsertIndex Outline、 Fields、 From、 To、 TableId、 Added...
1. Open your word document and click the position where you want to insert a form field. Then click theInserttab→theFormsdrop down button. 2. There are three types of form fields for choice:Text Form Field,Check Box Form FieldandDrop-Down Form Field. ...
使用TypeText 插入文本 相关内容 向Microsoft Office Word 文档中插入文本主要有三种方式: 在范围中插入文本。 将范围中的文本替换为新文本。 使用TypeText对象的Selection方法在光标或所选位置处插入文本。 备注 你还可以将文本插入到内容控件和书签中。 有关详细信息,请参阅内容控件和书签控件。
' If the form field is a text form field... If aField.Type = wdFieldFormTextInput Then ' Redim array to hold contents of text field. ReDim Preserve fFieldText(1, iCount + 1) ' Place content and name of field into array.
' If the form field is a text form field... If aField.Type = wdFieldFormTextInput Then ' Redim array to hold contents of text field. ReDim Preserve fFieldText(1, iCount + 1) ' Place content and name of field into array.
builder.insertTextInput("TextInput", TextFormFieldType.REGULAR,"","Hello", 0); 插入checkbox 如下代码是插入一个勾选框的form field示例: 1 2 3 Document doc =newDocument(); DocumentBuilder builder =newDocumentBuilder(doc); builder.insertCheckBox("CheckBox",true, 0); ...