0

一直试图弄清楚 Powerpoint Library C# 中是否有任何可以设置为取消选择的形状对象的属性。即使在鼠标拖动事件发生时的选择上,我们也可以通过其取消选择属性来停止拖动形状对象。

        if (isClickedHorizontalLabel && m_SelectedHorizontalLabel!=null) 
        {
           //the method doesnt helps in stopping unselecting it.
            m_SelectedHorizontalLabel.LabelShape.PPTShape.Select(Office.MsoTriState.msoFalse); 
        }
4

1 回答 1

0

任何当前选择都可以在 PowerPoint.Application 方法的 Unselect 属性的帮助下取消选择。以下是示例

        //SK: Stopped the Dragging of Horizontal Label -- Date:27-06-2014

        if (isClickedHorizontalLabel)
        {
            pptApp.ActiveWindow.Selection.Unselect() ;

        }
于 2014-06-27T06:37:34.350 回答