<?xml version="1.0" encoding="utf-8"?>
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
  <CodeSnippet Format="1.0.0">
    <Header>
      <Title>Convertir color OLE en Color</Title>
      <Author>Microsoft Corporation</Author>
      <Description>Convierte un color almacenado en formato OLE en un objeto System.Drawing.Color.</Description>
      <HelpUrl></HelpUrl>
      <SnippetTypes>
        <SnippetType>Expansion</SnippetType>
      </SnippetTypes>
      <Keywords>
        <Keyword></Keyword>
      </Keywords>
      <Shortcut></Shortcut>
    </Header>
    <Snippet>
      <References/>
      <Imports/>
      <Declarations>
        <Literal Editable="true">
          <ID>oleColor</ID>
          <Type>System.Int</Type>
          <ToolTip>Reemplazar por el color OLE que se va a convertir.</ToolTip>
          <Default>0xFF00</Default>
          <Function></Function>
        </Literal>
        <Object Editable="true">
          <ID>color</ID>
          <Type>System.Drawing.Color</Type>
          <ToolTip>Reemplazar por el objeto Color para almacenar el color.</ToolTip>
          <Default>color</Default>
          <Function></Function>
        </Object>
      </Declarations>
      <Code Language="CSharp" Kind="" Delimiter="$"><![CDATA[
$color$ = ColorTranslator.FromOle($oleColor$);
			]]></Code>
    </Snippet>
  </CodeSnippet>
</CodeSnippets>
