ControlCollection.AddContentControl 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
AddContentControl(ContentControl, String) |
문서의 네이티브 콘텐츠 컨트롤을 기반으로 하는 새 ContentControl을 추가합니다. |
AddContentControl(String, WdContentControlType) |
문서의 현재 선택 영역에 지정된 유형의 새 ContentControl을 추가합니다. |
AddContentControl(Range, String, WdContentControlType) |
문서의 지정된 범위에 지정된 유형의 새 ContentControl을 추가합니다. |
AddContentControl(ContentControl, String)
문서의 네이티브 콘텐츠 컨트롤을 기반으로 하는 새 ContentControl을 추가합니다.
public:
Microsoft::Office::Tools::Word::ContentControl ^ AddContentControl(Microsoft::Office::Interop::Word::ContentControl ^ contentControl, System::String ^ name);
public Microsoft.Office.Tools.Word.ContentControl AddContentControl (Microsoft.Office.Interop.Word.ContentControl contentControl, string name);
abstract member AddContentControl : Microsoft.Office.Interop.Word.ContentControl * string -> Microsoft.Office.Tools.Word.ContentControl
Public Function AddContentControl (contentControl As ContentControl, name As String) As ContentControl
매개 변수
- contentControl
- ContentControl
새 컨트롤에 대한 기준인 Microsoft.Office.Interop.Word.ContentControl
입니다.
- name
- String
새 컨트롤의 이름입니다.
반환
문서에 추가된 ContentControl입니다.
예외
contentControl
는 null
.-or- name
이 null
거나 길이가 0입니다.
ControlCollection에 동일한 이름의 컨트롤이 이미 있습니다.
contentControl
은 문서 블록 갤러리가 아닙니다(즉, Microsoft.Office.Interop.Word. 의 contentControl
ContentControl.Type 속성에 Microsoft.Office.Interop.Word 값이 없습니다. WdContentControlType.wdContentControlRichText).
설명
이 메서드를 사용하여 런타임에 문서의 네이티브 콘텐츠 컨트롤을 기반으로 하는 새 ContentControl 를 추가합니다. 이 기능은 런타임에 를 ContentControl 만들고 다음에 문서를 열 때 동일한 컨트롤을 다시 만들려고 할 때 유용합니다. 자세한 내용은 Adding Controls to Office Documents at Run Time을 참조하세요.
적용 대상
AddContentControl(String, WdContentControlType)
문서의 현재 선택 영역에 지정된 유형의 새 ContentControl을 추가합니다.
public:
Microsoft::Office::Tools::Word::ContentControl ^ AddContentControl(System::String ^ name, Microsoft::Office::Interop::Word::WdContentControlType contentControlType);
public Microsoft.Office.Tools.Word.ContentControl AddContentControl (string name, Microsoft.Office.Interop.Word.WdContentControlType contentControlType);
abstract member AddContentControl : string * Microsoft.Office.Interop.Word.WdContentControlType -> Microsoft.Office.Tools.Word.ContentControl
Public Function AddContentControl (name As String, contentControlType As WdContentControlType) As ContentControl
매개 변수
- name
- String
새 컨트롤의 이름입니다.
- contentControlType
- WdContentControlType
새 콘텐츠 컨트롤의 내부 형식을 지정하는 Microsoft.Office.Interop.Word.WdContentControlType
값 중 하나입니다.
반환
문서에 추가된 ContentControl입니다.
예외
name
는 null
이거나 길이가 0입니다.
ControlCollection에 동일한 이름의 컨트롤이 이미 있습니다.
설명
이 메서드를 사용하여 런타임에 문서의 현재 선택 영역에 새 ContentControl 를 추가합니다. 자세한 내용은 Adding Controls to Office Documents at Run Time을 참조하세요.
적용 대상
AddContentControl(Range, String, WdContentControlType)
문서의 지정된 범위에 지정된 유형의 새 ContentControl을 추가합니다.
public:
Microsoft::Office::Tools::Word::ContentControl ^ AddContentControl(Microsoft::Office::Interop::Word::Range ^ range, System::String ^ name, Microsoft::Office::Interop::Word::WdContentControlType contentControlType);
public Microsoft.Office.Tools.Word.ContentControl AddContentControl (Microsoft.Office.Interop.Word.Range range, string name, Microsoft.Office.Interop.Word.WdContentControlType contentControlType);
abstract member AddContentControl : Microsoft.Office.Interop.Word.Range * string * Microsoft.Office.Interop.Word.WdContentControlType -> Microsoft.Office.Tools.Word.ContentControl
Public Function AddContentControl (range As Range, name As String, contentControlType As WdContentControlType) As ContentControl
매개 변수
- name
- String
새 컨트롤의 이름입니다.
- contentControlType
- WdContentControlType
새 콘텐츠 컨트롤의 내부 형식을 지정하는 Microsoft.Office.Interop.Word.WdContentControlType
값 중 하나입니다.
반환
문서에 추가된 ContentControl입니다.
예외
name
는 null
이거나 길이가 0입니다.
ControlCollection에 동일한 이름의 컨트롤이 이미 있습니다.
설명
이 메서드를 ContentControl 사용하여 런타임에 문서의 지정된 범위에 새 를 추가합니다. 자세한 내용은 Adding Controls to Office Documents at Run Time을 참조하세요.