设置形状.在powerpoint 2010中选择(取消选择或取消选择)
本文关键字:选择 取消 2010 powerpoint 设置 | 更新日期: 2023-09-27 18:10:19
一直在试图找出是否有任何属性在Powerpoint库c#的形状对象可以设置为取消选择。即使在鼠标拖动事件发生的时候,我们也可以通过它的unselect属性来停止对形状对象的拖动。
if (isClickedHorizontalLabel && m_SelectedHorizontalLabel!=null)
{
//the method doesnt helps in stopping unselecting it.
m_SelectedHorizontalLabel.LabelShape.PPTShape.Select(Office.MsoTriState.msoFalse);
}
任何当前选择都可以在PowerPoint的取消选择属性的帮助下取消选择。应用程序的方法。下面是示例
//SK: Stopped the Dragging of Horizontal Label -- Date:27-06-2014
if (isClickedHorizontalLabel)
{
pptApp.ActiveWindow.Selection.Unselect() ;
}