您好,欢迎访问三七文档
当前位置:首页 > 行业资料 > 冶金工业 > C#设置EXCEL单元格格式
1C#设置EXCEL单元格格式数字(Range.NumberFormatlocal属性)常规:Range.NumberFormatlocal=G/通用格式数值:Range.NumberFormatlocal=0.000_--保留小数位数为3(此处“_”表示:留下一个与下一个字符同等宽度的空格)Range.NumberFormatlocal=0--不要小数Range.NumberFormatlocal=#,##0.000--保留小数位数为3,并使用千位分隔符货币:Range.NumberFormatlocal=$#,##0.000百分比:Range.NumberFormatlocal=0.000%分数:Range.NumberFormatlocal=#?/?科学计数:Range.NumberFormatlocal=0.00E+00文本:Range.NumberFormatlocal=@特殊:Range.NumberFormatlocal=000000---邮政编码Range.NumberFormatlocal=[DBNum1]G/通用格式---中文小写数字Range.NumberFormatlocal=[DBNum2]G/通用格式---中文大写数字Range.NumberFormatlocal=[DBNum2][$RMB]G/通用格式---人民币大写对齐水平对齐:Range.HorizontalAlignment=etHAlignCenter---居中垂直对齐:Range.VerticalAlignment=etVAlignCenter---居中是否自动换行:Range.WrapText=True是否缩小字体填充:Range.ShrinkToFit=True是否合并单元格:Range.MergeCells=False文字竖排:Range.Orientation=etVertical2文字倾斜度数:Range.Orientation=45-----倾斜45度字体(Font对象)字体名称:Font.Name=华文行楷字形:Font.FontStyle=常规字号:Font.Size=10下划线:Font.Strikethrough=True;Font.Underline=etUnderlineStyleDouble---双下划线上标:Font.Superscript=True下标:Font.SubScript=True删除线:Font.OutlineFont=True边框(Borders对象)Borders.Item(etEdgeTop):上边框Borders.Item(etEdgeLeft):左边框Borders.Item(etEdgeRight):右边框Borders.Item(etEdgeBottom):下边框Borders.Item(etDiagonalDown):左上--右下边框Borders.Item(etDiagonalUp):左下--右上边框Border.LineStyle=etContinuous线条样式
本文标题:C#设置EXCEL单元格格式
链接地址:https://www.777doc.com/doc-4707997 .html