Word) (CanvasShapes.Count 屬性
會傳回 Long,代表指定集合的畫布圖案數目。 唯讀。
語法
運算式。計數
需要 expression。 代表 CanvasShapes 物件的 變數。
範例
本範例會顯示使用中文件的段落數目。
MsgBox "The active document contains " & _
ActiveDocument.Paragraphs.Count & " paragraphs."
本範例會顯示選取範圍中的字數。
If Selection.Words.Count >= 1 And _
Selection.Type <> wdSelectionIP Then
MsgBox "The selection contains " & Selection.Words.Count _
& " words."
End If
本範例會使用 aFields() 陣列,儲存使用中文件裡的功能變數代碼。
fcount = ActiveDocument.Fields.Count
If fcount >= 1 Then
ReDim aFields(fcount)
For Each aField In ActiveDocument.Fields
aFields(aField.Index) = aField.Code.Text
Next aField
End If
另請參閱
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。