本文整理汇总了C#中Viewport.GetTypeId方法的典型用法代码示例。如果您正苦于以下问题:C# Viewport.GetTypeId方法的具体用法?C# Viewport.GetTypeId怎么用?C# Viewport.GetTypeId使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Viewport
的用法示例。
在下文中一共展示了Viewport.GetTypeId方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: ViewportBringToFront
/// <summary>
/// Bring viewport to front by
/// deleting and recreating it.
/// </summary>
void ViewportBringToFront(
ViewSheet sheet,
Viewport viewport)
{
Document doc = sheet.Document;
// Element id of the view in the viewport.
ElementId viewId = viewport.ViewId;
ElementId typeId = viewport.GetTypeId();
XYZ boxCenter = viewport.GetBoxCenter();
// The viewport might be pinned. Most overlayed
// viewports are maintained pinned to prevent
// accidental displacement. Record that state so
// the replacement viewport can reproduce it.
bool pinnedState = viewport.Pinned;
//View view = doc.ActiveView;
using( Transaction t = new Transaction( doc ) )
{
t.Start( "Delete and Recreate Viewport" );
// At least in Revit 2016, pinned viewports
// can be deleted without error.
sheet.DeleteViewport( viewport );
Viewport vvp = Viewport.Create( doc,
sheet.Id, viewId, boxCenter );
vvp.ChangeTypeId( typeId );
vvp.Pinned = pinnedState;
t.Commit();
}
}