共用方式為


Excel) (Characters 物件

代表包含文字的物件內的字元。

註解

Characters 物件可用來修改包含在完整文字字串中的任何字元序列。

使用 characters (startlength) , where start is the start character number and length is the number of characters, to return a Characters object.

範例

下列範例會在 B1 儲存格中新增文字,並將第二個單字設定為粗體。

With Worksheets("Sheet1").Range("B1") 
 .Value = "New Title" 
 .Characters(5, 5).Font.Bold = True 
End With

只有當您需要變更某些物件的文字而不影響其餘的文字時,才需要Range物件的Characters屬性 (如果物件不支援 rtf 文字) ,就無法使用Characters屬性來格式化部分文字。 若要同時變更所有文字的格式,通常可以對物件直接套用適合的方法或屬性。 下列範例會將 A5 儲存格的內容設定為斜體。

Worksheets("Sheet1").Range("A5").Font.Italic = True

方法

屬性

另請參閱

支援和意見反應

有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應