J
jo
What is the difference between these two ways creating a content
control in visual studio 2008?
Imports WordTools = Microsoft.office.tools.word
Dim RichTextControl1 as WordTools .RichTextContentControl
RichTextControl1 =
me.controls.AddRichTextContentControl("ControlName")
Dim RichTextControl1 As Word.ContentControl =
Me.ContentControls.Add(Word.WdContentControlType.wdContentControlText)
Is there any advantages to using one way over the other?
control in visual studio 2008?
Imports WordTools = Microsoft.office.tools.word
Dim RichTextControl1 as WordTools .RichTextContentControl
RichTextControl1 =
me.controls.AddRichTextContentControl("ControlName")
Dim RichTextControl1 As Word.ContentControl =
Me.ContentControls.Add(Word.WdContentControlType.wdContentControlText)
Is there any advantages to using one way over the other?