SnippetType 요소(IntelliSense 코드 조각)
Visual Studio에서 코드 조각을 삽입하는 방법을 지정합니다.
<SnippetType>
SurroundsWith/Expansion
<SnippetType>
특성 및 요소
다음 단원에서는 특성, 자식 요소 및 부모 요소에 대해 설명합니다.
특성
없음
자식 요소
없음
부모 요소
요소 |
설명 |
---|---|
SnippetType 요소를 그룹화합니다. |
텍스트 값
텍스트 값은 다음 값 중 하나여야 합니다.
SurroundsWith: 코드 조각을 선택된 코드 부분 주위에 배치할 수 있습니다.
Expansion: 코드 조각을 커서 위치에 삽입할 수 있습니다.
Refactoring: Visual C# 리팩터링 동안 코드 조각이 사용되도록 지정합니다. 사용자 지정 코드 조각에서는 Refactoring을 사용할 수 없습니다.
예제
다음 코드 조각의 SnippetType 요소에는 Expansion 값이 있습니다. 이것은 커서 위치에 코드 조각을 삽입할 수 있다는 뜻입니다.
<CodeSnippets xmlns="https://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
<CodeSnippet Format="1.0.0">
<Header>
<Title>Copy File</Title>
<Author>Microsoft Corporation</Author>
<Description>Copies a file and saves it as another file.</Description>
<HelpUrl>www.microsoft.com</HelpUrl>
<SnippetTypes>
<SnippetType>Expansion</SnippetType>
</SnippetTypes>
<Keywords>
<Keyword>File copying</Keyword>
<Keyword>Copying files</Keyword>
</Keywords>
<Shortcut>copyfile</Shortcut>
</Header>
<Snippet>
<!-- Insert snippet information here -->
</Snippet>
</CodeSnippet>
</CodeSnippets>