Help for this page

Select Code to Download


  1. or download this
    while(  $text =~ /($pattern)/g ) {
            my $startindex = $-[0];
    ...
            $vsoChars->{Text} = $capture;
            $vsoChars->SetProperty( 'CharProps', 1, $color );
    }
    
  2. or download this
    while( $text =~ /($pattern)/g ) {
            my $vsoChars = $VShape->Characters;
    ...
            $vsoChars->{Text} = $1;
            $vsoChars->SetProperty( 'CharProps', 1, $color );
    }