Lưu ý
Cần có ủy quyền mới truy nhập được vào trang này. Bạn có thể thử đăng nhập hoặc thay đổi thư mục.
Cần có ủy quyền mới truy nhập được vào trang này. Bạn có thể thử thay đổi thư mục.
Returns the TreeviewControl object of the CubeField object, representing the cube manipulation control of an OLAP-based PivotTable report. Read-only.
Syntax
expression.TreeviewControl
expression A variable that represents a CubeField object.
Remarks
This property is available only when the control is visible.
Example
This example sets the first cube field control to "drilled" for the states of California and Maryland in the second PivotTable report on the active worksheet.
ActiveSheet.PivotTables("PivotTable2") _
.CubeFields(1).TreeviewControl.Drilled = _
Array(Array("", ""), _
Array("[state].[states].[CA]", _
"[state].[states].[MD]"))
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.