Advertisement
Guest User

PROTOCOLO

a guest
Dec 7th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.66 KB | None | 0 0
  1. Sub PROTOCOLO()
  2. '
  3. ' PROTOCOLO Macro
  4. '
  5. '
  6. Selection.Font.Name = "Times New Roman"
  7. Selection.Font.Size = 12.5
  8. With Selection.ParagraphFormat
  9. .LeftIndent = CentimetersToPoints(0)
  10. .RightIndent = CentimetersToPoints(0.1)
  11. .SpaceBefore = 0
  12. .SpaceBeforeAuto = False
  13. .SpaceAfter = 0
  14. .SpaceAfterAuto = False
  15. .LineSpacingRule = wdLineSpaceExactly
  16. .LineSpacing = 28
  17. .Alignment = wdAlignParagraphJustify
  18. .WidowControl = False
  19. .KeepWithNext = False
  20. .KeepTogether = False
  21. .PageBreakBefore = False
  22. .NoLineNumber = False
  23. .Hyphenation = True
  24. .FirstLineIndent = CentimetersToPoints(0)
  25. .OutlineLevel = wdOutlineLevelBodyText
  26. .CharacterUnitLeftIndent = 0
  27. .CharacterUnitRightIndent = 0
  28. .CharacterUnitFirstLineIndent = 0
  29. .LineUnitBefore = 0
  30. .LineUnitAfter = 0
  31. .MirrorIndents = False
  32. .TextboxTightWrap = wdTightNone
  33. End With
  34. WordBasic.PageSetupMargins Tab:=3, PaperSize:=9, TopMargin:="3.5", _
  35. BottomMargin:="1.6", LeftMargin:="4.7", RightMargin:="1.2", Gutter:="0", _
  36. PageWidth:="20.5", PageHeight:="30.5", Orientation:=0, FirstPage:=0, _
  37. OtherPages:=0, VertAlign:=0, ApplyPropsTo:=4, FacingPages:=1, _
  38. HeaderDistance:="0", FooterDistance:="0", SectionStart:=2, _
  39. OddAndEvenPages:=0, DifferentFirstPage:=0, Endnotes:=0, LineNum:=0, _
  40. CountBy:=0, TwoOnOne:=0, GutterPosition:=0, LayoutMode:=0, DocFontName:= _
  41. "", FirstPageOnLeft:=0, SectionType:=1, FolioPrint:=0, ReverseFolio:=0, _
  42. FolioPages:=1
  43. End Sub
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement