<?xml version="1.0" encoding="utf-8"?>
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
  <CodeSnippet Format="1.0.0">
    <Header>
      <Title>Poner en negrita un intervalo</Title>
      <Author>Microsoft Corporation</Author>
      <Description>Establece el atributo Bold de 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>boldValue</ID>
          <Type>System.Int</Type>
          <ToolTip>Reemplazar por el valor entero para el atributo Bold. Utilizar -1 para true, 0 para false, y Word.WdConstants.wdToggle para alternar la configuración actual.</ToolTip>
          <Default>(int)Word.WdConstants.wdToggle</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 establecer el atributo Bold.</ToolTip>
          <Default>range</Default>
          <Function></Function>
        </Object>
      </Declarations>
      <Code Language="CSharp" Kind="" Delimiter="$"><![CDATA[
$range$.Font.Bold = $boldValue$;
			]]></Code>
    </Snippet>
  </CodeSnippet>
</CodeSnippets>
