本文整理汇总了C#中IVwSelection.GetSelectionProps方法的典型用法代码示例。如果您正苦于以下问题:C# IVwSelection.GetSelectionProps方法的具体用法?C# IVwSelection.GetSelectionProps怎么用?C# IVwSelection.GetSelectionProps使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类IVwSelection
的用法示例。
在下文中一共展示了IVwSelection.GetSelectionProps方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: GetSelectionProps
/// ------------------------------------------------------------------------------------
/// <summary>
/// Gets the selection props for the specified IVwSelection
/// </summary>
/// <param name="vwSel">The view Selection</param>
/// <param name="vttp">Returned array of ITsTextProps in the selection</param>
/// <param name="vvps">Returned array of IVwPropertyStores in the selection</param>
/// <param name="cttp">Returned count of TsTxtProps (this is basically just the number
/// of runs in the selection)</param>
/// ------------------------------------------------------------------------------------
public static void GetSelectionProps(IVwSelection vwSel, out ITsTextProps[] vttp,
out IVwPropertyStore[] vvps, out int cttp)
{
Debug.Assert(vwSel != null);
vttp = null;
vvps = null;
cttp = 0;
if (!vwSel.IsValid)
return;
// The first call to GetSelectionProps gets the count of properties
vwSel.GetSelectionProps(0, ArrayPtr.Null, ArrayPtr.Null, out cttp);
if (cttp == 0)
return;
using (ArrayPtr pvTtp = MarshalEx.ArrayToNative<ITsTextProps>(cttp))
{
using (ArrayPtr pvVps = MarshalEx.ArrayToNative<IVwPropertyStore>(cttp))
{
vwSel.GetSelectionProps(cttp, pvTtp, pvVps, out cttp);
vttp = MarshalEx.NativeToArray<ITsTextProps>(pvTtp, cttp);
vvps = MarshalEx.NativeToArray< IVwPropertyStore>(pvVps, cttp);
}
}
}