<?xml version="1.0" encoding="utf-8"?>
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
  <CodeSnippet Format="1.0.0">
    <Header>
      <Title>Establecer la alineación para un intervalo</Title>
      <Author>Microsoft Corporation</Author>
      <Description>Establece la alineación del párrafo para un intervalo.</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>alignmentValue</ID>
          <Type>Word.WdParagraphAlignment</Type>
          <ToolTip>Reemplazar por la alineación que se va a utilizar. Uno de los valores Word.WdParagraphAlignment.</ToolTip>
          <Default>wdAlignParagraphLeft</Default>
          <Function></Function>
        </Literal>
        <Object Editable="true">
          <ID>range</ID>
          <Type>Microsoft.Office.Interop.Word.Range</Type>
          <ToolTip>Reemplazar por el intervalo para el que se va a establecer la alineación.</ToolTip>
          <Default>range</Default>
          <Function></Function>
        </Object>
      </Declarations>
      <Code Language="CSharp" Kind="" Delimiter="$"><![CDATA[
$range$.ParagraphFormat.Alignment = Word.WdParagraphAlignment.$alignmentValue$;
			]]></Code>
    </Snippet>
  </CodeSnippet>
</CodeSnippets>
