Detail View

Detail View

kresh.bell
Collaborator Collaborator
141 Views
1 Reply
Message 1 of 2

Detail View

kresh.bell
Collaborator
Collaborator

Hi,

is it possible to set these settings as default? If not, is it possible to make an iLogic that would set them later?

 

kreshbell_1-1726213063514.png

 

 

 

0 Likes
142 Views
1 Reply
Reply (1)
Message 2 of 2

Michael.Navara
Advisor
Advisor

Cutout shape can be set in Styles. Everything else you can modify by iLogic. See DetailDrawingView Object for more info.

 

Sub Main()
    Dim detailView As DetailDrawingView = ThisApplication.CommandManager.Pick(SelectionFilterEnum.kDrawingViewFilter, "Select detail view")

    detailView.CircularFence = MsgBox("YES - Circular, NO - Rectangular", MsgBoxStyle.YesNo) = MsgBoxResult.Yes
    detailView.DisplayFullBoundary = MsgBox("Full boundary" , MsgBoxStyle.YesNo) = MsgBoxResult.Yes
    detailView.IsBreakLineSmooth = MsgBox("YES - Smooth, NO - Jagged" , MsgBoxStyle.YesNo) = MsgBoxResult.Yes

End Sub

 

0 Likes