ActivePane

ActivePane【ActivePane】ActivePane是一种网路名词,适用于Window对象,此属性仅用于工作表和宏表 。
基本介绍中文名:ActivePane
适用于:Window对象
描述:返回一个 Pane 对象
说明:此属性仅用于工作表和宏表 。
信息适用于Window对象Window对象返回一个 Pane 对象,此对象代表指定视窗中的活动窗格 。唯读 。说明此属性仅用于工作表和宏表 。此属性返回 Pane 对象 。必须使用 Index 属性得到活动窗格的索引 。另见ActiveWindow属性示例本示例激活 Book1.xls 中当前视窗的下一个窗格 。如果当前窗格处于被冻结状态则不能激活下一个窗格 。本示例必须在除 Book1.xls 外的另一工作簿上运行 。运行本示例之前,必须确保Book1.xls 的活动工作表有两个或四个窗格 。Workbooks("BOOK1.XLS").ActivateIf not ActiveWindow.FreezePanes ThenWith ActiveWindow14i = .ActivePane.IndexIf i = .Panes.Count Then.Panes(1).ActivateElse.Panes(i+1).ActivateEnd IfEnd WithEnd If