C#操作Word完全功略!
如何:将文档发送到打印机
Word 对象模型参考 (Visual Studio Tools for Office)Document.PrintOut 方法
贴一段别人的代码
public class BiultReportForm
{
/// <SUMMARY></SUMMARY>
/// word 应用对象
///
private Microsoft.Office.Interop.Word.Application _wordApplication;
/// <SUMMARY></SUMMARY>
/// word 文件对象
///
private Microsoft.Office.Interop.Word.Document _wordDocument;
/// <SUMMARY></SUMMARY>
/// 创建文档
///
public void CreateAWord()
{
// 实例化word应用对象
this ._wordApplication = new Microsoft.Office.Interop.Word.ApplicationClass();
Object myNothing = System.Reflection.Missing.Value;
this ._wordDocument = this ._wordApplication.Documents.Add( ref myNothing, ref myNothing, ref myNothing, ref myNothing);
}
/// <SUMMARY></SUMMARY>
/// 添加页眉
///
/// <PARAM name="pPageHeader" />
public void SetPageHeader( string pPageHeader)
{
// 添加页眉
this ._wordApplication.ActiveWindow.View.Type = Microsoft .Office .Interop .Word.WdViewType.wdOutlineView;
this ._wordApplication.ActiveWindow.View.SeekView = Microsoft.Office.Interop.Word.WdSeekView.wdSeekPrimaryHeader;
this ._wordApplication.ActiveWindow.ActivePane.Selection.InsertAfter(pPageHeader);
// 设置中间对齐
this ._wordApplication.Selection.ParagraphFormat.Alignment = Microsoft .Office .Interop.Word.WdParagraphAlignment.wdAlignParagraphCenter;
// 跳出页眉设置
this ._wordApplication.ActiveWindow.View.SeekView = Microsoft.Office.Interop.Word.WdSeekView.wdSeekMainDocument;
}
/// <SUMMARY></SUMMARY>
/// 插入文字
///
/// <PARAM name="pText" /> 文本信息
/// <PARAM name="pFontSize" /> 字体打小
/// <PARAM name="pFontColor" /> 字体颜色
/// <PARAM name="pFontBold" /> 字体粗体
/// <PARAM name="ptextAlignment" /> 方向
public void InsertText( string pText, int pFontSize, Microsoft.Office.Interop.Word.WdColor pFontColor, int pFontBold, Microsoft.Office.Interop.Word.WdParagraphAlignment ptextAlignment)
{
// 设置字体样式以及方向
this ._wordApplication.Application.Selection.Font.Size = pFontSize;
this ._wordApplication.Application.Selection.Font.Bold = pFontBold;
this ._wordApplication.Application.Selection.Font.Color = pFontColor;
this ._wordApplication.Application.Selection.ParagraphFormat.Alignment = ptextAlignment;
this ._wordApplication.Application.Selection.TypeText(pText);
}
/// <SUMMARY></SUMMARY>
/// 换行
///
public void NewLine()
{
// 换行
this ._wordApplication.Application.Selection.TypeParagraph();
}
/// <SUMMARY></SUMMARY>
/// 插入一个图片
///
/// <PARAM name="pPictureFileName" />
public void InsertPicture( string pPictureFileName)
{
object myNothing = System.Reflection.Missing.Value;
// 图片居中显示
this ._wordApplication.Selection.ParagraphFormat.Alignment = Microsoft.Office.Interop.Word.WdParagraphAlignment.wdAlignParagraphCenter;
this ._wordApplication.Application.Selection.InlineShapes.AddPicture(pPictureFileName, ref myNothing, ref myNothing, ref myNothing);
}
/// <SUMMARY></SUMMARY>
/// 保存文件
///
/// <PARAM name="pFileName" /> 保存的文件名
public void SaveWord( string pFileName)
{
object myNothing = System.Reflection.Missing.Value;
object myFileName = pFileName;
object myWordFormatDocument = Microsoft .Office .Interop .Word.WdSaveFormat.wdFormatDocument;
object myLockd = false ;
object myPassword = "" ;
object myAddto = true ;
try
{
this ._wordDocument.SaveAs( ref myFileName, ref myWordFormatDocument, ref myLockd, ref myPassword, ref myAddto, ref myPassword,
ref myLockd, ref myLockd, ref myLockd, ref myLockd, ref myNothing, ref myNothing, ref myNothing,
ref myNothing, ref myNothing, ref myNothing);
}
catch
{
throw new Exception( " 导出word文档失败! " );
}
}
}
周老师科研站
所有类别 (820) [RSS]
pb (34) [RSS]
代码实例 (22) [RSS]
控件界面 (6) [RSS}]
打印 (3) [RSS]
数据源 (1) [RSS]
Java (135) [RSS]
代码实例 (52) [RSS]
工具 (9) [RSS]
Java新闻 (3) [RSS]
基础知识 (71) [RSS]
sql (77) [RSS]
基础 (21) [RSS]
技巧 (56) [RSS]
net (150) [RSS]
Linux (9) [RSS]
web (282) [RSS]
源码 (11) [RSS]
javascript (110) [RSS]
技巧 (6) [RSS]
其他 (64) [RSS]
SSH (87) [RSS]
other (93) [RSS]
tool (21) [RSS]
english (2) [RSS]
oracle (17) [RSS]
更多文章、技术交流、商务合作、联系博主
微信扫码或搜索:z360901061
微信扫一扫加我为好友
QQ号联系: 360901061
您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描下面二维码支持博主2元、5元、10元、20元等您想捐的金额吧,狠狠点击下面给点支持吧,站长非常感激您!手机微信长按不能支付解决办法:请将微信支付二维码保存到相册,切换到微信,然后点击微信右上角扫一扫功能,选择支付二维码完成支付。
【本文对您有帮助就好】元