Insert checkbox caption in Word document
问题 The following inserts an autotext element in a Word document NormalTemplate.AutoTextEntries("ap_pressurefilter").Insert _ Where:=Selection.Range, RichText:=True but how do I insert the caption of a checkbox (checkbox1.Caption) in the document? Thanks. 回答1: Solved it! Selection.Text = checkbox.Caption 来源: https://stackoverflow.com/questions/14982244/insert-checkbox-caption-in-word-document