Mrrrr's Forum (VIEW ONLY)
Un forum care ofera solutii pentru unele probleme legate in general de PC. Pe langa solutii, aici puteti gasi si alte lucruri interesante // A forum that offers solutions to some PC related issues. Besides these, here you can find more interesting stuff.
|
Lista Forumurilor Pe Tematici
|
Mrrrr's Forum (VIEW ONLY) | Reguli | Inregistrare | Login
POZE MRRRR'S FORUM (VIEW ONLY)
Nu sunteti logat.
|
Nou pe simpatie: Larina23
| Femeie 23 ani Timis cauta Barbat 28 - 80 ani |
|
Mrrrr
AdMiN
Inregistrat: acum 17 ani
Postari: 2228
|
|
While there is the option: HOME - Paragraph Properties - Tabs - Clear All
you can also use the 1-click VBA alternative:
Sub ParagTabStops_Remove()
With ActiveDocument.Range .ParagraphFormat.TabStops.ClearAll End With
ActiveDocument.DefaultTabStop = CentimetersToPoints(1.27)
End Sub |
_______________________________________
|
|
pus acum 6 ani |
|
TRaP
Moderator
Inregistrat: acum 6 ani
Postari: 787
|
|
If you want to clear the tab stops and add your own, for example at 0,5 cm and at 3,3 cm, just use this:
Sub AddTabStops() With ActiveDocument Selection.ParagraphFormat.TabStops.ClearAll Selection.ParagraphFormat.TabStops.Add Position:=CentimetersToPoints(0.5), _ Alignment:=wdAlignTabLeft, Leader:=wdTabLeaderSpaces Selection.ParagraphFormat.TabStops.Add Position:=CentimetersToPoints(3.3), _ Alignment:=wdAlignTabLeft, Leader:=wdTabLeaderSpaces End With End Sub
|
|
|
pus acum 5 ani |
|