版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡介
1、word文檔編輯之常用的宏2011-07-18 05:28宏能簡化文檔編輯中重復(fù)性的動作,大大提高了效率?,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 著重號()'' 著重號 宏''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等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 基于Hausdorff距離在A區(qū)B油層地層智能對比中的應(yīng)用研究
- 2025年度電商直播帶貨合作服務(wù)合同
- 化工園區(qū)風(fēng)力發(fā)電機(jī)變槳控制研究
- 2025年度遺產(chǎn)繼承財(cái)產(chǎn)分配與遺產(chǎn)保護(hù)規(guī)劃協(xié)議
- 二零二五年度水稻種植回收與農(nóng)業(yè)市場拓展合同
- 二零二四年度學(xué)校餐廳員工用工合同與員工培訓(xùn)及職業(yè)資格證書2篇
- 2025年度慶典活動表演安全責(zé)任豁免協(xié)議
- 二零二五年度租賃合同糾紛調(diào)解與資產(chǎn)保全服務(wù)協(xié)議
- 二零二五年度電梯應(yīng)急救援預(yù)案編制合同書
- 二零二五年度車險(xiǎn)人傷調(diào)解與保險(xiǎn)理賠效率提升協(xié)議
- 藝術(shù)哲學(xué):美是如何誕生的學(xué)習(xí)通超星期末考試答案章節(jié)答案2024年
- 北京海淀區(qū)2025屆高三下第一次模擬語文試題含解析
- 量子醫(yī)學(xué)治療學(xué)行業(yè)投資機(jī)會分析與策略研究報(bào)告
- 碳纖維增強(qiáng)復(fù)合材料在海洋工程中的應(yīng)用情況
- 多重耐藥菌病人的管理-(1)課件
- (高清版)TDT 1056-2019 縣級國土資源調(diào)查生產(chǎn)成本定額
- 環(huán)境監(jiān)測對環(huán)境保護(hù)的意義
- 2023年數(shù)學(xué)競賽AMC8試卷(含答案)
- 神經(jīng)外科課件:神經(jīng)外科急重癥
- 2023年十天突破公務(wù)員面試
- 《瘋狂動物城》中英文對照(全本臺詞)
評論
0/150
提交評論