SnippetTypes 元素(IntelliSense 代码段)
组各个 SnippetType 元素。
<SnippetTypes>
<SnippetType>... </SnippetType>
<SnippetType>... </SnippetType>
<SnippetTypes>
特性和元素
以下几节描述了特性、子元素和父元素。
特性
none。
子元素
元素 |
说明 |
---|---|
可选的元素。 如何指定 Visual Studio 插入代码段到代码中。 可以有零个或多 SnippetType 元素在 SnippetTypes 元素。 |
父元素
元素 |
说明 |
---|---|
指定有关代码段的常规信息。 |
备注
如果 SnippetTypes 元素不存在,代码段任意位置在代码中插入。
示例
SnippetType 元素的值在下面的示例中的是 Expansion。 这指示 Visual Studio 可以插入访问代码段在游标的当前位置。
<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>