Help for this page

Select Code to Download


  1. or download this
    $miDoc->{Images}->Item(0)->{Layout}{Text};
    
  2. or download this
    my $images = $miDoc->{Images} || die $^E;
    my $first = $images->Item(0) || die $^E;
    my $layout = $first->{Layout} || die $^E;
    my $text = $layout->{Text} || die $^E;