我正在寻找一个字符串对象,我可以在Excel VBA中声明,我可以操作段落样式。 我知道你可以用Range对象做到这一点,但是我实际上是在编写一个富文本字符串,然后将该文本分配给函数的结果。
见这里。
Function makestring(char As String) As String
Dim myString As String
myString = "hello world" & char
myString = myString & "this is the second line"
myString.Characters(1.11).Font.color = Red ' this line is not valid
makestring = myString
End Function