Hello,

I want to change text in the clipboard.

...
my $clip = Win32::Clipboard;
return unless $clip->IsText;
my @formats = $clip->EnumFormats;
my $text = $clip->Get;
# do something with $text
# ...
$clip->Set($text);
print 'Old formats: ', join(',', @formats), "\n";
print 'New formats: ', join(',', $clip->EnumFormats), "\n";
...

How I can set old identifiers describing the format (@formats)
to new clipboard content?

-- 
Best regards,
 Lev


_______________________________________________
Perl-Win32-Users mailing list
[EMAIL PROTECTED]
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Reply via email to