Title Element (IntelliSense Code Snippets)
Specifies the title for the code snippet.
<CodeSnippets>
<CodeSnippet>
<Header>
<Title>
<Title>
Code Snippet Title
<Title>
Attributes and Elements
The following sections describe attributes, child elements, and parent elements.
Attributes
None.
Child Elements
None.
Parent Elements
Element |
Description |
---|---|
Contains general information about a code snippet. |
Text Value
A text value is required.
This text specifies the title of the code snippet.
Remarks
The title stored in the Title element of the code snippet appears in the Code Snippet Picker and in the code snippet's description in the Code Snippets Manager.
Example
The Title element of the following code snippet contains the value Copy File. This title appears in the Code Snippet Inserter and in description of the code snippet in the Code Snippets Manager.
<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>
See Also
Tasks
Walkthrough: Creating a Code Snippet