一直试图弄清楚 Powerpoint Library C# 中是否有任何可以设置为取消选择的形状对象的属性。即使在鼠标拖动事件发生时的选择上,我们也可以通过其取消选择属性来停止拖动形状对象。
if (isClickedHorizontalLabel && m_SelectedHorizontalLabel!=null)
{
//the method doesnt helps in stopping unselecting it.
m_SelectedHorizontalLabel.LabelShape.PPTShape.Select(Office.MsoTriState.msoFalse);
}