﻿<?xml version="1.0" encoding="utf-8"?>
<!--NPOI的配置文件-->
<NPOI>
  <!--Excel的配置信息-->
  <Excel>
	<!--单元格样式 目前只具有以下这些属性-->
	<!--Style(string)		name属性来区别各单元格样式 用户自定义-->
	<!--FontName(string)	字体样式 默认“宋体”-->
	<!--FontSize(short)		字体大小 默认12-->
	<!--Color(R,G,B)int		字体颜色 默认黑色(0,0,0)-->
	<!--Bold(None,Normal,Bold)	字体加粗度 默认Normal-->
	<!--Underline(None,Single,Double,SingleAccounting,DoubleAccounting)	下划线样式 默认None-->
	<!--HorizontalAlignment(General,Left,Center,Right,Fill,Justify,CenterSelection,Distributed) 垂直对齐样式 默认CENTER-->
	<!--VerticalAlignment(Top,Center,Bottom,Justify,Distributed) 水平对齐样式 默认Center-->
	<!--BackgroundColor(R,G,B)int	背景颜色 默认白色(255,255,255)-->
	<!--ShrinkToFit bool 字体是否自动适应宽度 默认true-->
    <Styles>
      <Style name="title1">
        <FontSize>24</FontSize>
        <Bold>Bold</Bold>
		    <BackgroundColor>
			    <R>255</R>
			    <G>255</G>
			    <B>255</B>
		    </BackgroundColor>
      </Style>
      <Style name="columnTitle1">
        <FontSize>18</FontSize>
        <Bold>Bold</Bold>
        <BackgroundColor>
			    <R>255</R>
			    <G>255</G>
			    <B>255</B>
		    </BackgroundColor>
      </Style>
	  <Style name="link">
		<Color>
			<R>0</R>
			<G>0</G>
			<B>255</B>
		</Color>
		<Underline>Single</Underline>
      </Style>
    </Styles>
  </Excel>
</NPOI>