<?xml version="1.0" encoding="utf-8"?>
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
  <CodeSnippet Format="1.0.0">
    <Header>
      <Title>Mostrar la fila de totales de un objeto de lista</Title>
      <Author>Microsoft Corporation</Author>
      <Description>Mostrar u ocultar la fila de totales de un control ListObject de Excel.</Description>
      <HelpUrl></HelpUrl>
      <SnippetTypes>
        <SnippetType>Expansion</SnippetType>
      </SnippetTypes>
      <Keywords>
        <Keyword></Keyword>
      </Keywords>
      <Shortcut></Shortcut>
    </Header>
    <Snippet>
      <References>
        <Reference>
          <Assembly>Microsoft.Office.Interop.Excel.dll</Assembly>
          <Url></Url>
        </Reference>
      </References>
      <Imports>
        <Import>
          <Namespace>Excel = Microsoft.Office.Interop.Excel</Namespace>
        </Import>
      </Imports>
      <Declarations>
        <Literal Editable="true">
          <ID>value</ID>
          <Type>Boolean</Type>
          <ToolTip>Reemplazar por un valor booleano. True para mostrar la fila de totales.</ToolTip>
          <Default>True</Default>
          <Function></Function>
        </Literal>
        <Object Editable="true">
          <ID>list</ID>
          <Type>Microsoft.Office.Interop.Excel.ListObject</Type>
          <ToolTip>Reemplazar por el objeto de lista en el que mostrar u ocultar la fila de totales.</ToolTip>
          <Default>list</Default>
          <Function></Function>
        </Object>
      </Declarations>
      <Code Language="VB" Kind="" Delimiter="$"><![CDATA[
$list$.ShowTotals = $value$
			]]></Code>
    </Snippet>
  </CodeSnippet>
</CodeSnippets>
