Sdílet prostřednictvím


Prvek SnippetTypes (technologie IntelliSense kódu)

Jednotlivé skupiny SnippetType prvky.

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

Atributy a elementy

Následující části popisují atributy, podřízené prvky a rodičovské prvky.

Atributy

Žádný

Podřízené elementy

Element

Description

SnippetType

Volitelný prvek.

Určuje, jak Visual Studio fragment kódu vloží kód.Může být nula nebo více SnippetType prvky SnippetTypes prvku.

Nadřazené elementy

Element

Description

Záhlaví

Určuje obecné informace o fragment kódu.

Poznámky

Pokud SnippetTypes není prvek, fragment kódu lze vložit kamkoli v kódu.

Příklad

Hodnota SnippetType prvek v následujícím příkladu je Expansion.To znamená, že Visual Studio na aktuální pozici kurzoru můžete vložit fragment kódu.

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

Viz také

Koncepty

Reference schématu fragmenty kódu