다음을 통해 공유


ControlCollection.AddContentControl 메서드

정의

오버로드

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입니다.

예외

contentControlnull.-or- namenull 거나 길이가 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입니다.

예외

namenull이거나 길이가 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

매개 변수

range
Range

새 컨트롤의 범위를 제공하는 Range입니다.

name
String

새 컨트롤의 이름입니다.

contentControlType
WdContentControlType

새 콘텐츠 컨트롤의 내부 형식을 지정하는 Microsoft.Office.Interop.Word.WdContentControlType 값 중 하나입니다.

반환

문서에 추가된 ContentControl입니다.

예외

namenull이거나 길이가 0입니다.

ControlCollection에 동일한 이름의 컨트롤이 이미 있습니다.

설명

이 메서드를 ContentControl 사용하여 런타임에 문서의 지정된 범위에 새 를 추가합니다. 자세한 내용은 Adding Controls to Office Documents at Run Time을 참조하세요.

적용 대상