![word文檔編輯之常用的宏_第1頁](http://file3.renrendoc.com/fileroot_temp3/2022-1/13/58732edd-70c4-4a81-a17c-4b9f25688607/58732edd-70c4-4a81-a17c-4b9f256886071.gif)
![word文檔編輯之常用的宏_第2頁](http://file3.renrendoc.com/fileroot_temp3/2022-1/13/58732edd-70c4-4a81-a17c-4b9f25688607/58732edd-70c4-4a81-a17c-4b9f256886072.gif)
![word文檔編輯之常用的宏_第3頁](http://file3.renrendoc.com/fileroot_temp3/2022-1/13/58732edd-70c4-4a81-a17c-4b9f25688607/58732edd-70c4-4a81-a17c-4b9f256886073.gif)
![word文檔編輯之常用的宏_第4頁](http://file3.renrendoc.com/fileroot_temp3/2022-1/13/58732edd-70c4-4a81-a17c-4b9f25688607/58732edd-70c4-4a81-a17c-4b9f256886074.gif)
![word文檔編輯之常用的宏_第5頁](http://file3.renrendoc.com/fileroot_temp3/2022-1/13/58732edd-70c4-4a81-a17c-4b9f25688607/58732edd-70c4-4a81-a17c-4b9f256886075.gif)
版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡(jiǎn)介
1、word文檔編輯之常用的宏2011-07-18 05:28宏能簡(jiǎn)化文檔編輯中重復(fù)性的動(dòng)作,大大提高了效率?,F(xiàn)將本人在使用word軟件中錄制的宏存下來以備忘:Sub autonew()ActiveWindow.ActivePane.View.Zoom.PageFit = wdPageFitBestFitEnd SubSub autoopen()ActiveWindow.ActivePane.View.Zoom.PageFit = wdPageFitBestFitEnd SubSub 講義頁面設(shè)置()'' 講義頁面設(shè)置 宏''With Selection.PageS
2、etup.LineNumbering.Active = False.Orientation = wdOrientPortrait.TopMargin = CentimetersToPoints(2.54).BottomMargin = CentimetersToPoints(2.54).LeftMargin = CentimetersToPoints(3.17).RightMargin = CentimetersToPoints(3.17).Gutter = CentimetersToPoints(0).HeaderDistance = CentimetersToPoints(1.5).Foo
3、terDistance = CentimetersToPoints(1.75).PageWidth = CentimetersToPoints(19.69).PageHeight = CentimetersToPoints(27.31).FirstPageTray = wdPrinterDefaultBin.OtherPagesTray = wdPrinterDefaultBin.SectionStart = wdSectionNewPage.OddAndEvenPagesHeaderFooter = False.DifferentFirstPageHeaderFooter = False.V
4、erticalAlignment = wdAlignVerticalTop.SuppressEndnotes = False.MirrorMargins = False.TwoPagesOnOne = False.BookFoldPrinting = False.BookFoldRevPrinting = False.BookFoldPrintingSheets = 1.GutterPos = wdGutterPosLeft.LinesPage = 44.LayoutMode = wdLayoutModeLineGridEnd WithWith ActiveDocument.Styles(wd
5、StyleNormal).FontIf .NameFarEast = .NameAscii Then.NameAscii = ""End If.NameFarEast = ""End WithWith ActiveDocument.PageSetup.LineNumbering.Active = False.Orientation = wdOrientPortrait.TopMargin = CentimetersToPoints(2.8).BottomMargin = CentimetersToPoints(2.3).LeftMargin = Cent
6、imetersToPoints(4).RightMargin = CentimetersToPoints(1).Gutter = CentimetersToPoints(0).HeaderDistance = CentimetersToPoints(1.5).FooterDistance = CentimetersToPoints(1.75).PageWidth = CentimetersToPoints(19.69).PageHeight = CentimetersToPoints(27.31).FirstPageTray = wdPrinterDefaultBin.OtherPagesTr
7、ay = wdPrinterDefaultBin.SectionStart = wdSectionNewPage.OddAndEvenPagesHeaderFooter = False.DifferentFirstPageHeaderFooter = False.VerticalAlignment = wdAlignVerticalTop.SuppressEndnotes = False.MirrorMargins = True.TwoPagesOnOne = False.BookFoldPrinting = False.BookFoldRevPrinting = False.BookFold
8、PrintingSheets = 1.GutterPos = wdGutterPosLeft.LayoutMode = wdLayoutModeLineGridEnd WithEnd SubSub 段落編輯()'' 段落編輯 宏''Selection.WholeStoryWith Selection.ParagraphFormat.LeftIndent = CentimetersToPoints(0).RightIndent = CentimetersToPoints(0).SpaceBefore = 0.SpaceBeforeAuto = False.Spac
9、eAfter = 0.SpaceAfterAuto = False.LineSpacingRule = wdLineSpaceSingle.Alignment = wdAlignParagraphJustify.FirstLineIndent = CentimetersToPoints(0.35).OutlineLevel = wdOutlineLevelBodyText.CharacterUnitLeftIndent = 0.CharacterUnitRightIndent = 0.CharacterUnitFirstLineIndent = 2.LineUnitBefore = 0.Lin
10、eUnitAfter = 0.MirrorIndents = False.AutoAdjustRightIndent = False.DisableLineHeightGrid = True.WordWrap = TrueEnd WithEnd SubSub 替換整理()'' 替換整理 宏''Selection.Find.ClearFormattingSelection.Find.Replacement.ClearFormattingWith Selection.Find.Text = "l".Replacement.Text = "
11、;p".Forward = True.Wrap = wdFindContinue.Format = False.MatchCase = False.MatchWholeWord = False.MatchByte = False.MatchWildcards = False.MatchSoundsLike = False.MatchAllWordForms = FalseEnd WithSelection.Find.Execute Replace:=wdReplaceAllSelection.Find.ClearFormattingSelection.Find.Replacement
12、.ClearFormattingWith Selection.Find.Text = "pp".Replacement.Text = "p".Forward = True.Wrap = wdFindContinue.Format = False.MatchCase = False.MatchWholeWord = False.MatchByte = False.MatchWildcards = False.MatchSoundsLike = False.MatchAllWordForms = FalseEnd WithSelection.Find.Exe
13、cute Replace:=wdReplaceAllSelection.Find.ClearFormattingSelection.Find.Replacement.ClearFormattingWith Selection.Find.Text = "w".Replacement.Text = "".Forward = True.Wrap = wdFindContinue.Format = False.MatchCase = False.MatchWholeWord = False.MatchByte = False.MatchWildcards = F
14、alse.MatchSoundsLike = False.MatchAllWordForms = FalseEnd WithSelection.Find.Execute Replace:=wdReplaceAllEnd SubSub 打印排版()'' 打印排版 宏''Selection.WholeStoryWith Selection.PageSetup.LineNumbering.Active = False.Orientation = wdOrientPortrait.TopMargin = CentimetersToPoints(2.54).BottomM
15、argin = CentimetersToPoints(2.54).LeftMargin = CentimetersToPoints(1.9).RightMargin = CentimetersToPoints(1.9).Gutter = CentimetersToPoints(0).HeaderDistance = CentimetersToPoints(1.5).FooterDistance = CentimetersToPoints(1.75).PageWidth = CentimetersToPoints(21).PageHeight = CentimetersToPoints(29.
16、7).FirstPageTray = wdPrinterDefaultBin.OtherPagesTray = wdPrinterDefaultBin.SectionStart = wdSectionNewPage.OddAndEvenPagesHeaderFooter = False.DifferentFirstPageHeaderFooter = False.VerticalAlignment = wdAlignVerticalTop.SuppressEndnotes = False.MirrorMargins = False.TwoPagesOnOne = False.BookFoldP
17、rinting = False.BookFoldRevPrinting = False.BookFoldPrintingSheets = 1.GutterPos = wdGutterPosLeft.LinesPage = 44.LayoutMode = wdLayoutModeLineGridEnd WithSelection.Font.Bold = wdToggleSelection.Font.Name = "宋體"Selection.Font.Size = 9If ActiveWindow.View.SplitSpecial <> wdPaneNone Th
18、enActiveWindow.Panes(2).CloseEnd IfIf ActiveWindow.ActivePane.View.Type <> wdPrintView ThenActiveWindow.ActivePane.View.Type = wdPrintViewEnd IfWith Selection.PageSetup.TextColumns.SetCount NumColumns:=2.EvenlySpaced = True.LineBetween = FalseEnd WithEnd SubSub 著重號(hào)()'' 著重號(hào) 宏''W
19、ith Selection.Font.EmphasisMark = wdEmphasisMarkUnderSolidCircleEnd WithEnd SubSub 去頁眉頁腳()'' 去頁眉頁腳 宏''If ActiveWindow.View.SplitSpecial <> wdPaneNone ThenActiveWindow.Panes(2).CloseEnd IfIf ActiveWindow.ActivePane.View.Type = wdNormalView Or ActiveWindow. _ActivePane.View.Type = wdOutlineView ThenActiveWindow.ActivePane.View.Type = wdPrintViewEnd IfActiveWindow.ActivePane.View.SeekView = wdSeekCurrentPageHeaderSelection.WholeStorySelection.Delete Unit:=wdCharacter, Count:=1Selection.Delete Unit:=
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。
最新文檔
- 2025年全球及中國(guó)單水龍頭行業(yè)頭部企業(yè)市場(chǎng)占有率及排名調(diào)研報(bào)告
- 2025-2030全球旋裝式空氣油分離器行業(yè)調(diào)研及趨勢(shì)分析報(bào)告
- 2025年全球及中國(guó)全向堆高AGV行業(yè)頭部企業(yè)市場(chǎng)占有率及排名調(diào)研報(bào)告
- 2025年全球及中國(guó)服裝用粘膠長(zhǎng)絲行業(yè)頭部企業(yè)市場(chǎng)占有率及排名調(diào)研報(bào)告
- 2025-2030全球OA設(shè)備精密金屬制品行業(yè)調(diào)研及趨勢(shì)分析報(bào)告
- 2025年全球及中國(guó)IP67工業(yè)平板電腦行業(yè)頭部企業(yè)市場(chǎng)占有率及排名調(diào)研報(bào)告
- 2025合作合同 展會(huì)活動(dòng)合作協(xié)議
- 房屋代理買賣合同
- 基本建設(shè)年度借款合同
- 2025合同模板建設(shè)工程借款合同范本
- 包裝品質(zhì)彩盒外箱知識(shí)課件
- GB/T 9439-2023灰鑄鐵件
- 神經(jīng)外科課件:神經(jīng)外科急重癥
- 頸復(fù)康腰痛寧產(chǎn)品知識(shí)課件
- 2024年低壓電工證理論考試題庫及答案
- 微電網(wǎng)市場(chǎng)調(diào)查研究報(bào)告
- 《民航服務(wù)溝通技巧》教案第14課民航服務(wù)人員上行溝通的技巧
- MT/T 538-1996煤鉆桿
- 小學(xué)六年級(jí)語文閱讀理解100篇(及答案)
- CB/T 467-1995法蘭青銅閘閥
- 氣功修煉十奧妙
評(píng)論
0/150
提交評(píng)論