Help for this page

Select Code to Download


  1. or download this
    my $table = $word->ActiveDocument->Tables(2);
    $table->Select();
    
  2. or download this
    Selection.MoveDown Unit:=wdLine, Count:=1, Extend:=wdExtend
    
  3. or download this
    $word->selection->MoveDown({Unit => wdline,Count=>1,Extend=> wdExtend,
    +});
    $word->selection->MoveDown(wdLine,1);