Word2003绘图工具栏功能介绍

巴拉啪啪啪啪

巴拉啪啪啪啪

2016-04-01 01:07

今天天气好晴朗处处好风光,好天气好开始,图老师又来和大家分享啦。下面给大家推荐Word2003绘图工具栏功能介绍,希望大家看完后也有个好心情,快快行动吧!

Word2003绘图工具栏功能介绍

   介绍了word2003的操作界面后,下面我们就先来看看word2003的绘图工具。绘图工具主要是用在编辑艺术字、修改插入的图片。图老师小编这里用图文来进行解说,通过对各功能按钮的展开就可以清楚地知道这些按钮的名称及功能。

  Word2003的绘图工具栏在默认情况下位于程序窗口下方,状态栏之上。通过绘图工具栏,可以在文档中插入各种自选图形、文本框、艺术字、线条、箭头等图形对象。

  绘图工具栏各按钮功能介绍

  word2003的绘图工具栏各按钮功能 图解1

  word2003的绘图工具栏各按钮功能 图解2

  word2003的绘图工具栏各按钮功能 图解3

  word2003绘图工具栏,可以将在文档中根据需要插入艺术字、图片、线条、箭头等要素。当你完成一篇文章时,如果有用到绘图工具,你会发现点击图形或者线条文本框后,旁边就会出现绘图工具,届时可进行修改。

word2010:标尺与网格线设置小技巧

   标尺与网格线在word中非常常用到的功能,一般用来辅助图像处理操作的,如对齐操作、对称操作,可以帮助用户大大提高工作效率,用户可以根据需要显示或隐藏标尺、网格线和导航窗格。在视图功能区的显示分组中,选中或取消相应复选框www.Tulaoshi.com可以显示或隐藏对应的项目。

  1.显示或隐藏标尺

  标尺包括水平标尺和垂直标尺,用于显示Word2010文档的页边距、段落缩进、制表符等。选中或取消标尺复选框可以显示或隐藏标尺,如图1所示。

(本文来源于图老师网站,更多请访问https://m.tulaoshi.com/wjc/)

  图1 Word2010文档窗口标尺

  2.显示或隐藏网格线

  网格线能够帮助用户将Word2010文档中的图形、图像、文本框、艺术字等对象沿网格线对齐,并且在打印时网格线不被打印出来。选中或取消网格线复选框可以显示或隐藏网格线,如图2所示。

  图2 Word2010文档窗口网格线

  3.显示或隐藏导航窗格

  导航窗格主要用于显示Word2010文档的标题大纲,用户可以单击文档结构图中的标题可以展开或收缩下一级标题,并且可以快速定位到标题对应的正文内容,还可以显示Word2010文档的缩略图。选中或取消导航窗格复选框可以显示或隐藏导航窗格,如图3所示。

  图3 Word2010导航窗格

  标尺与网格线在word 2010中非常重要,朋友们不要忽视了这个功能哦,不管是显示或者隐藏该功能,都应该好好学习。

C#生成Word文档代码示例

   这篇文章主要介绍了C#生成Word文档代码示例,本文直接给出代码实例,需要的朋友可以参考下

(本文来源于图老师网站,更多请访问https://m.tulaoshi.com/wjc/)

  ?

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 public bool CreateWordFile(string _filename, "数据List或者你C#要写的数据"){#region 开始生成Wordtry{ string strtitle = "任务导出";object oEndOfDoc = "//endofdoc";Object Nothing = System.Reflection.Missing.Value;Object filename = _filename;//创建Word文档 Microsoft.Office.Interop.Word.Application WordApp = new Microsoft.Office.Interop.Word.ApplicationClass();Microsoft.Office.Interop.Word.Document WordDoc = WordApp.Documents.Add(ref Nothing, ref Nothing, ref Nothing, ref Nothing);  //设置页眉WordApp.ActiveWindow.View.Type = Microsoft.Office.Interop.Word.WdViewType.wdOutlineView;WordApp.ActiveWindow.View.SeekView = Microsoft.Office.Interop.Word.WdSeekView.wdSeekPrimaryHeader;WordApp.ActiveWindow.ActivePane.Selection.InsertAfter("WPFOA任务导出");WordApp.Selection.ParagraphFormat.Alignment = Microsoft.Office.Interop.Word.WdParagraphAlignment.wdAlignParagraphRight;//设置右对齐WordApp.ActiveWindow.View.SeekView = Microsoft.Office.Interop.Word.WdSeekView.wdSeekMainDocument;//跳出页眉设置//任务导出------名字Word.Paragraph oPara1;oPara1 = WordDoc.Content.Paragraphs.Add(ref Nothing);oPara1.Range.Text = strtitle;oPara1.Range.Font.Bold = 1;oPara1.Range.Font.Name = "宋体";oPara1.Range.Font.Size = 20;oPara1.Range.ParagraphFormat.Alignment = Word.WdParagraphAlignment.wdAlignParagraphCenter;oPara1.Format.SpaceAfter = 5; //24 pt spacing after paragraph.oPara1.Range.InsertParagraphAfter();#region 循环每个表 foreach (var v in lst_task){#region 循环每一个列,产生一行数据//描述信息Word.Paragraph oPara3;object oRng = WordDoc.Bookmarks.get_Item(ref oEndOfDoc).Range;oPara3 = WordDoc.Content.Paragraphs.Add(ref oRng);oPara3.Range.Text = "";oPara3.Range.Font.Bold = 0;oPara3.Range.Font.Name = "宋体";oPara3.Range.Font.Size = 9;oPara3.Range.ParagraphFormat.Alignment = Word.WdParagraphAlignment.wdAlignParagraphCenter;oPara3.Format.SpaceBefore = 1;oPara3.Format.SpaceAfter = 1;oPara3.Range.InsertParagraphAfter(); //插入表格Word.Table newTable;Word.Range wrdRng = WordDoc.Bookmarks.get_Item(ref oEndOfDoc).Range;newTable = WordDoc.Tables.Add(wrdRng, 5, 4, ref Nothing, ref Nothing);newTable.Columns[1].Width = 60;newTable.Columns[2].Width = 145;newTable.Columns[3].Width = 80;newTable.Columns[4].Width = 145;newTable.Borders.OutsideLineStyle = Microsoft.Office.Interop.Word.WdLineStyle.wdLineStyleSingle;newTable.Borders.InsideLineStyle = Microsoft.Office.Interop.Word.WdLineStyle.wdLineStyleSingle; //填充表格内容newTable.Cell(1, 1).Range.Text = "项目名称";newTable.Cell(1, 2).Range.Text = "1";newTable.Cell(1, 3).Range.Text = "模块名称";newTable.Cell(1, 4).Range.Text = "2";newTable.Cell(2, 1).Range.Text = "负责人名";newTable.Cell(2, 2).Range.Text = "3";newTable.Cell(2, 3).Range.Text = "状态";newTable.Cell(2, 4).Range.Text = "4";newTable.Cell(3, 1).Range.Text = "发布时间";newTable.Cell(3, 2).Range.Text = "5";newTable.Cell(3, 3).Range.Text = "要求完成时间";newTable.Cell(3, 4).Range.Text = "6";newTable.Cell(4, 1).Range.Text = "完成时间";newTable.Cell(4, 2).Range.Text = "7";newTable.Cell(4, 3).Range.Text = "分配人";newTable.Cell(4, 4).Range.Text = "8";newTable.Cell(5, 1).Range.Text = "任务描述";newTable.Cell(5, 2).Merge(newTable.Cell(5, 4));newTable.Cell(5, 2).Range.ParagraphFormat.Alignment = Word.WdParagraphAlignment.wdAlignParagraphLeft;newTable.Cell(5, 2).Range.Text = "12313213123213";#endregion}  WordDoc.SaveAs(ref filename, ref Nothing, ref Nothing, ref Nothing,ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing,ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing,ref Nothing, ref Nothing); WordDoc.Close(ref Nothing, ref Nothing, ref Nothing);WordApp.Quit(ref Nothing, ref Nothing, ref Nothing);#endregion//关闭WinWord进程System.Diagnostics.Process[] MyProcess = System.Diagnostics.Process.GetProcessesByName("WINWORD");MyProcess[0].Kill();return true; }catch{ System.Diagnostics.Process[] MyProcess = System.Diagnostics.Process.GetProcessesByName("WINWORTuLaoShi.comD");MyProcess[0].Kill();return false;}#endregion}
展开更多 50%)
分享

猜你喜欢

Word2003绘图工具栏功能介绍

word
Word2003绘图工具栏功能介绍

word2003的“绘图”工具栏的具体使用

电脑入门
word2003的“绘图”工具栏的具体使用

s8lol主宰符文怎么配

英雄联盟 网络游戏
s8lol主宰符文怎么配

word文档绘图工具栏

电脑应用
word文档绘图工具栏

Word2003工具栏不见了如何恢复?

电脑入门
Word2003工具栏不见了如何恢复?

lol偷钱流符文搭配推荐

英雄联盟 网络游戏
lol偷钱流符文搭配推荐

Word2003文档的工具栏添加外部程序

电脑入门
Word2003文档的工具栏添加外部程序

将常用Word2003文档名称添加到Word工具栏

电脑入门
将常用Word2003文档名称添加到Word工具栏

lolAD刺客新符文搭配推荐

英雄联盟
lolAD刺客新符文搭配推荐

网易163邮箱如何收取其他账号邮件

网易163邮箱如何收取其他账号邮件

给力助手一键扩展安卓模拟器SD卡

给力助手一键扩展安卓模拟器SD卡
下拉加载更多内容 ↓