Visual Basic Equivalents J Through L
J | |
---|---|
JustifyPara, JustifyPara() | Selection.Paragraphs.Alignment = wdAlignParagraphJustify |
K | |
---|---|
KeyCode() | x = KeyBindings(1).KeyCode |
KeyMacro$() | x = KeyBindings(1).Command |
Kill filename | Kill filename |
L | |
---|---|
Language, Language$() | Selection.LanguageID |
LCase$() | LCase()
' or LCase$() |
Left$() | Left$()
' or Left() |
LeftPara, LeftPara() | Selection.Paragraphs.Alignment = wdAlignParagraphLeft |
Len() | Len() |
Let | Let |
Line Input | Line Input |
LineDown, LineDown() | Selection.MoveDown Unit:=wdLine, Count:=1, Extend:=wdMove |
LineUp, LineUp() | Selection.MoveUp Unit:= wdLine, Count:=1, Extend:=wdMove |
ListBox | ListBox Control |
ListCommands | Application.ListCommands |
LockDocument, LockDocument() | ActiveDocument.Subdocuments(1).Locked
= True
state = ActiveDocument.Subdocuments(1).Locked |
LockFields | ' You can lock a single field or a group of fields within a range.
Selection.Fields.Locked = True ActiveDocument.Fields(1).Locked =True |
Lof() | LOF() |
LTrim$() | LTrim() |