With a Word ContentControl DatePicker how do i get the value?

泄露秘密 提交于 2019-11-28 09:05:25

问题


I have a ContentControl that is a DatePicker in a word document. I'm trying to use it to populate some value in a code behind but I cant seem to get the value out of it.

Private Sub Document_ContentControlOnExit(ByVal ContentControl As ContentControl, _
    Cancel As Boolean)

None of the properties on ContentControl are close to .Value or .Text. I have seen other content controls use:

ContentControl.DropdownListEntries(1).Text
ContentControl.DropdownListEntries(1).Value

This, as expected for a DatePicker, does not work but it is the only property of ContentControl that returns anything close to the value I want.

How do i get the date from the DatePicker ContentControl?


回答1:


Is this what you are trying?

Private Sub Document_ContentControlOnExit(ByVal ContentControl _
As ContentControl, Cancel As Boolean)
    MsgBox ContentControl.Range.Text
End Sub

SNAPSHOT



来源:https://stackoverflow.com/questions/10823874/with-a-word-contentcontrol-datepicker-how-do-i-get-the-value

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!