Application.FindFormat 属性 (Excel)

设置或返回要查找的单元格格式类型的搜索条件。

语法

表达式FindFormat

expression:表示 Application 对象的变量。

示例

在此示例中,搜索条件设置为查找 Arial、Regular、Size 10 字体单元格,并通知用户。

Sub UseFindFormat() 
 
 ' Establish search criteria. 
 With Application.FindFormat.Font 
 .Name = "Arial" 
 .FontStyle = "Regular" 
 .Size = 10 
 End With 
 
 ' Notify user. 
 With Application.FindFormat.Font 
 MsgBox .Name & "-" & .FontStyle & "-" & .Size & _ 
 " font is what the search criteria is set to." 
 End With 
 
End Sub

支持和反馈

有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。