c # WPF Interop.Word Set Элемент комбинированного списка - PullRequest
0 голосов
/ 08 ноября 2019

Кто-нибудь знает, как выбрать и установить элемент ComboBox в документе Word (с Interop.Word)?

enter image description here

public void txt()
{
    string template = Path.GetDirectoryName(Application.ExecutablePath).Trim() + "\\template.docx";

    Word.Application wordApp = new Word.Application();
    wordApp.Visible = true;

    Word.Document document = 
        wordApp.Documents.OpenNoRepairDialog(template);
    document.Activate();

    Word.Table table = document.Tables[1];

    table.Cell(2, 2).Range.Text = textBox1.Text;
}
...