<?xml version="1.0" encoding="utf-8"?>
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
  <CodeSnippet Format="1.0.0">
    <Header>
      <Title>Obtener WordML de un intervalo</Title>
      <Author>Microsoft Corporation</Author>
      <Description>Obtiene los datos XML, incluido el marcado WordML, desde un intervalo en un documento de Word.</Description>
      <HelpUrl></HelpUrl>
      <SnippetTypes>
        <SnippetType>Expansion</SnippetType>
      </SnippetTypes>
      <Keywords>
        <Keyword></Keyword>
      </Keywords>
      <Shortcut></Shortcut>
    </Header>
    <Snippet>
      <References>
        <Reference>
          <Assembly>Microsoft.Office.Interop.Word.dll</Assembly>
          <Url></Url>
        </Reference>
      </References>
      <Imports>
        <Import>
          <Namespace>Word = Microsoft.Office.Interop.Word</Namespace>
        </Import>
      </Imports>
      <Declarations>
        <Literal Editable="true">
          <ID>xmlData</ID>
          <Type>System.String</Type>
          <ToolTip>Reemplazar por una variable de cadena en la que almacenar los datos XML.</ToolTip>
          <Default>xmlData</Default>
          <Function></Function>
        </Literal>
        <Object Editable="true">
          <ID>range</ID>
          <Type>Microsoft.Office.Interop.Word.Range</Type>
          <ToolTip>Reemplazar por el intervalo del que se van a obtener los datos WordML.</ToolTip>
          <Default>range</Default>
          <Function></Function>
        </Object>
      </Declarations>
      <Code Language="CSharp" Kind="" Delimiter="$"><![CDATA[
$xmlData$ = $range$.get_XML(false);
			]]></Code>
    </Snippet>
  </CodeSnippet>
</CodeSnippets>
