如何使用 Win32:OLE 更改 msword 字符串中单词的颜色索引?
我实际上正在尝试更改数组中第一个带有大括号的单词的颜色索引,以便它们在 Word 2003 中以正确的颜色显示。
例如,如果我有一个这样的数组:
@array="
(This) is (perl),
perl is a great (language),
we can do anything with perl,
(perl) feels us great."
我需要第一个单词的颜色位于括号()
内,即(This)
和(perl)
,其中()
为红色其余内容为黑色。并在 MS Word 2003 中打印数组的全部内容:
我正在使用 Win32::OLE< /a> 和 Windows XP。这个数组只是一个例子,数组的内容会改变,但第一个带大括号的单词必须以红色打印。
I am actually trying to change the color index for the first word with braces in an array so they show up in the right color in Word 2003.
For example, if I have an array like this:
@array="
(This) is (perl),
perl is a great (language),
we can do anything with perl,
(perl) feels us great."
I need the colour of the first word that is inside the parentheses ()
, i.e. (This)
and (perl)
including ()
to be in red and rest of the contents in black. and print the entire contents of the array in MS Word 2003:
I'm using Win32::OLE and Windows XP. This array is just an example the contents of an array will change but first word with braces has to be printed in red.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)