共用方式為


SnippetTypes 項目 (IntelliSense 程式碼片段)

群組個別的 SnippetType 項目。

<SnippetTypes>
    <SnippetType>... </SnippetType>
    <SnippetType>... </SnippetType>
<SnippetTypes>

屬性和項目

下列各節將說明屬性、子項目和父項目。

屬性

無。

子項目

項目

描述

SnippetType

選擇性項目。

指定 Visual Studio 如何將程式碼片段插入程式碼。 SnippetTypes 項目中可能有零個或多個 SnippetType 項目。

父項目

項目

描述

Header

指定有關該程式碼片段的一般資訊。

備註

如果 SnippetTypes 項目不存在,可以將程式碼片段插入程式碼中的任何位置。

範例

在下列範例中的 SnippetType 項目值為 Expansion。 這表示 Visual Studio 2005 可以在游標目前的位置插入程式碼片段。

<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>

請參閱

概念

程式碼片段結構描述參考