<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: View Justification of Drawing Detail in Inventor Forum</title>
    <link>https://forums.autodesk.com/t5/inventor-forum/view-justification-of-drawing-detail/m-p/12109240#M40975</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/12503691"&gt;@dev8FGGQ&lt;/a&gt;&amp;nbsp;.&amp;nbsp;Here is the iLogic rule I use. I translated the text into English for ease of use.&lt;/P&gt;&lt;LI-CODE lang="visual-basic"&gt;Sub main
	Dim oDDoc As DrawingDocument = ThisApplication.ActiveDocument
	Dim oCM As CommandManager = ThisApplication.CommandManager
	Dim oCurve1, oCurve2 As DrawingCurveSegment
	oCurve1 = oCM.Pick(SelectionFilterEnum.kDrawingCurveSegmentFilter, "Select a curve of the view...(Press ESC to cancel)")
	If oCurve1 Is Nothing Then Exit Sub
	Do
		oCurve2 = oCM.Pick(SelectionFilterEnum.kDrawingCurveSegmentFilter, "Select the orientation curve...(Press ESC to cancel)")
		If oCurve2 Is Nothing Then Exit Sub
	Loop While oCurve1.Parent.Parent Is oCurve2.Parent.Parent
	Dim lPosCurves As Long = GetPositionCurve(oCurve1, oCurve2)
	If lPosCurves &amp;lt;&amp;gt; 0 Then
		Dim dDistance As Double = GetMinimumDistance(oCurve1, oCurve2, lPosCurves)
		Call SetPositionView(oCurve1.Parent.Parent, dDistance, lPosCurves)
	Else
		MessageBox.Show("The curves are not parallel, or your option is not described in a circle.", _
						"Error!", MessageBoxButtons.OK, MessageBoxIcon.Error)
	End If
End Sub

Private Function GetPositionCurve(ByVal oCurve1 As DrawingCurveSegment, ByVal oCurve2 As DrawingCurveSegment) As Long
	Dim dCurve1StartX, dCurve1StartY, dCurve1EndX, dCurve1EndY, dCurve2StartX, dCurve2StartY, dCurve2EndX, dCurve2EndY As Double
	Dim oPoint1, oPoint2 As Point2d
	If oCurve1.GeometryType = Curve2dTypeEnum.kLineSegmentCurve2d Then
		dCurve1StartX = Round(oCurve1.StartPoint.X, 5)
		dCurve1StartY = Round(oCurve1.StartPoint.Y, 5)
		dCurve1EndX = Round(oCurve1.EndPoint.X, 5)
		dCurve1EndY = Round(oCurve1.EndPoint.Y, 5)
	Else If oCurve1.GeometryType = Curve2dTypeEnum.kCircleCurve2d Then
		oPoint1 = oCurve1.Geometry.Center
	Else If oCurve1.GeometryType = Curve2dTypeEnum.kCircularArcCurve2d Then
		oPoint1 = oCurve1.Geometry.Center
	End If
	If oCurve2.GeometryType = Curve2dTypeEnum.kLineSegmentCurve2d Then
		dCurve2StartX = Round(oCurve2.StartPoint.X, 5)
		dCurve2StartY = Round(oCurve2.StartPoint.Y, 5)
		dCurve2EndX = Round(oCurve2.EndPoint.X, 5)
		dCurve2EndY = Round(oCurve2.EndPoint.Y, 5)
	Else If oCurve2.GeometryType = Curve2dTypeEnum.kCircleCurve2d Then
		oPoint2 = oCurve2.Geometry.Center
	Else If oCurve2.GeometryType = Curve2dTypeEnum.kCircularArcCurve2d Then
		oPoint2 = oCurve2.Geometry.Center
	End If
	If oCurve1.GeometryType = Curve2dTypeEnum.kLineSegmentCurve2d Then
		If oCurve2.GeometryType = Curve2dTypeEnum.kLineSegmentCurve2d Then
			If dCurve1StartX = dCurve1EndX And dCurve2StartX = dCurve2EndX Then
				If dCurve1StartX &amp;gt;= dCurve2StartX Then
					Return 3
				Else
					Return 4
				End If
			Else If dCurve1StartY = dCurve1EndY And dCurve2StartY = dCurve2EndY Then
				If dCurve1StartY &amp;gt;= dCurve2StartY Then
					Return 1
				Else
					Return 2
				End If
			End If
		Else If oCurve2.GeometryType = Curve2dTypeEnum.kCircleCurve2d Or _
			oCurve2.GeometryType = Curve2dTypeEnum.kCircularArcCurve2d Then
			If dCurve1StartX = dCurve1EndX Then
				If oPoint2.X &amp;gt;= dCurve1StartX Then
					Return 7
				Else
					Return 8
				End If
			Else If dCurve1StartY = dCurve1EndY Then
				If oPoint2.Y &amp;gt;= dCurve1StartY Then
					Return 5
				Else
					Return 6
				End If
			End If
		End If
	Else If oCurve1.GeometryType = Curve2dTypeEnum.kCircleCurve2d Or _
		oCurve1.GeometryType = Curve2dTypeEnum.kCircularArcCurve2d Then
		If oCurve2.GeometryType = Curve2dTypeEnum.kLineSegmentCurve2d Then
			If dCurve2StartX = dCurve2EndX Then
				If oPoint1.X &amp;gt;= dCurve2StartX Then
					Return 11
				Else
					Return 12
				End If
			Else If dCurve2StartY = dCurve2EndY Then
				If oPoint1.Y &amp;gt;= dCurve2StartY Then
					Return 9
				Else
					Return 10
				End If
			End If
		Else If oCurve2.GeometryType = Curve2dTypeEnum.kCircleCurve2d Or _
			oCurve2.GeometryType = Curve2dTypeEnum.kCircularArcCurve2d Then
			Dim bvResult As DialogResult
			If oCurve1.Parent.Parent.Aligned Then
				Dim oView, oParenView As DrawingView
				oView = oCurve1.Parent.Parent
				oParenView = oCurve1.Parent.Parent.ParentView
				If (Math.Abs(oView.Top - oParenView.Top) &amp;lt; 0.0000001) Then
					bvResult = vbYes
				ElseIf (Math.Abs(oView.Left - oParenView.Left) &amp;lt; 0.0000001) Then
					bvResult = vbNo
				End If
			End If
			If bvResult = 0 Then
				bvResult = MessageBox.Show("Select 'Yes' to center vertically and 'No' to center horizontally.", _
							"Centering.", MessageBoxButtons.YesNoCancel, MessageBoxIcon.Question)
			End If
			If bvResult = vbYes Then
				If oPoint1.X &amp;gt;= oPoint2.X Then
					Return 15
				Else
					Return 16
				End If
			Else If bvResult = vbNo Then
				If oPoint1.Y &amp;gt;= oPoint2.Y Then
					Return 13
				Else
					Return 14
				End If
			End If
		End If
	End If
	Return 0
End Function

Private Function GetMinimumDistance(ByVal oCurve1 As DrawingCurveSegment, ByVal oCurve2 As DrawingCurveSegment, ByVal lPosCurves As Long) As Double
	Select Case lPosCurves
	Case 1, 2 : Return Math.Abs(oCurve1.StartPoint.Y - oCurve2.StartPoint.Y)
	Case 3, 4 : Return Math.Abs(oCurve1.StartPoint.X - oCurve2.StartPoint.X)
	Case 5, 6 : Return Math.Abs(oCurve1.StartPoint.Y - oCurve2.Geometry.Center.Y)
	Case 7, 8 : Return Math.Abs(oCurve1.StartPoint.X - oCurve2.Geometry.Center.X)
	Case 9, 10 : Return Math.Abs(oCurve1.Geometry.Center.Y - oCurve2.StartPoint.Y)
	Case 11, 12 : Return Math.Abs(oCurve1.Geometry.Center.X - oCurve2.StartPoint.X)
	Case 13, 14 : Return Math.Abs(oCurve1.Geometry.Center.Y - oCurve2.Geometry.Center.Y)
	Case 15, 16 : Return Math.Abs(oCurve1.Geometry.Center.X - oCurve2.Geometry.Center.X)
	End Select
	Return 0
End Function

Private Function SetPositionView(ByVal oView As DrawingView, ByVal dDistance As Double, ByVal lPosCurves As Long)
	Dim oTG As TransientGeometry = ThisApplication.TransientGeometry
	Select Case lPosCurves
	Case 1, 5, 9, 13 : oView.Position = oTG.CreatePoint2d(oView.Position.X, oView.Position.Y - dDistance)
	Case 2, 6, 10, 14 : oView.Position = oTG.CreatePoint2d(oView.Position.X, oView.Position.Y + dDistance)
	Case 3, 7, 11, 15 : oView.Position = oTG.CreatePoint2d(oView.Position.X - dDistance, oView.Position.Y)
	Case 4, 8, 12, 16 : oView.Position = oTG.CreatePoint2d(oView.Position.X + dDistance, oView.Position.Y)
	End Select
End Function&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 19 Jul 2023 05:07:07 GMT</pubDate>
    <dc:creator>Andrii_Humeniuk</dc:creator>
    <dc:date>2023-07-19T05:07:07Z</dc:date>
    <item>
      <title>View Justification of Drawing Detail</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/view-justification-of-drawing-detail/m-p/12108958#M40971</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;when I make a drawing detail of the main view, the detail is Centered view and I cannot align it in the right position with main view. When I make a cut, there is no problem.&lt;/P&gt;&lt;P&gt;See example.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have found a solution on this forum, but it haven't helped me.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Do you know how can I do it?&lt;/P&gt;</description>
      <pubDate>Tue, 18 Jul 2023 10:12:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/view-justification-of-drawing-detail/m-p/12108958#M40971</guid>
      <dc:creator>dev8FGGQ</dc:creator>
      <dc:date>2023-07-18T10:12:20Z</dc:date>
    </item>
    <item>
      <title>Re: View Justification of Drawing Detail</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/view-justification-of-drawing-detail/m-p/12108971#M40972</link>
      <description>&lt;P&gt;The solution which didnt help is&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.youtube.com/watch?v=x_9yd45rJYg" target="_blank" rel="noopener"&gt;https://www.youtube.com/watch?v=x_9yd45rJYg&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 18 Jul 2023 10:17:06 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/view-justification-of-drawing-detail/m-p/12108971#M40972</guid>
      <dc:creator>dev8FGGQ</dc:creator>
      <dc:date>2023-07-18T10:17:06Z</dc:date>
    </item>
    <item>
      <title>Re: View Justification of Drawing Detail</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/view-justification-of-drawing-detail/m-p/12109182#M40973</link>
      <description>&lt;P&gt;&lt;SPAN class="HwtZe"&gt;&lt;SPAN class="jCAhz ChMk0b"&gt;&lt;SPAN class="ryNqvb"&gt;Usually the detail view is done at a different scale from the base view and it's not entirely clear how you want to align it.&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="HwtZe"&gt;&lt;SPAN class="jCAhz ChMk0b"&gt;&lt;SPAN class="ryNqvb"&gt;However, the problem can be solved using&amp;nbsp; iLogic rules - the corresponding code is described by&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/13518190"&gt;@Andrii_Humeniuk&lt;/a&gt;&amp;nbsp; in&lt;BR /&gt;&lt;A href="https://forums.autodesk.com/t5/product-design-manufacturing/inventor-yak-virivnyati-vidi-yaki-e-fiksovanimi-vidnosno-inshih/m-p/11985445#M651" target="_blank"&gt;https://forums.autodesk.com/t5/product-design-manufacturing/inventor-yak-virivnyati-vidi-yaki-e-fiksovanimi-vidnosno-inshih/m-p/11985445#M651&lt;/A&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 18 Jul 2023 12:17:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/view-justification-of-drawing-detail/m-p/12109182#M40973</guid>
      <dc:creator>Alexander_Chernikov</dc:creator>
      <dc:date>2023-07-18T12:17:14Z</dc:date>
    </item>
    <item>
      <title>Re: View Justification of Drawing Detail</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/view-justification-of-drawing-detail/m-p/12109202#M40974</link>
      <description>&lt;P&gt;Hi, thank you, i will try it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The detail view can have a different scale, but all cuts of this detail are then also centered, so there is the problem.&lt;/P&gt;</description>
      <pubDate>Tue, 18 Jul 2023 12:26:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/view-justification-of-drawing-detail/m-p/12109202#M40974</guid>
      <dc:creator>dev8FGGQ</dc:creator>
      <dc:date>2023-07-18T12:26:14Z</dc:date>
    </item>
    <item>
      <title>Re: View Justification of Drawing Detail</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/view-justification-of-drawing-detail/m-p/12109240#M40975</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/12503691"&gt;@dev8FGGQ&lt;/a&gt;&amp;nbsp;.&amp;nbsp;Here is the iLogic rule I use. I translated the text into English for ease of use.&lt;/P&gt;&lt;LI-CODE lang="visual-basic"&gt;Sub main
	Dim oDDoc As DrawingDocument = ThisApplication.ActiveDocument
	Dim oCM As CommandManager = ThisApplication.CommandManager
	Dim oCurve1, oCurve2 As DrawingCurveSegment
	oCurve1 = oCM.Pick(SelectionFilterEnum.kDrawingCurveSegmentFilter, "Select a curve of the view...(Press ESC to cancel)")
	If oCurve1 Is Nothing Then Exit Sub
	Do
		oCurve2 = oCM.Pick(SelectionFilterEnum.kDrawingCurveSegmentFilter, "Select the orientation curve...(Press ESC to cancel)")
		If oCurve2 Is Nothing Then Exit Sub
	Loop While oCurve1.Parent.Parent Is oCurve2.Parent.Parent
	Dim lPosCurves As Long = GetPositionCurve(oCurve1, oCurve2)
	If lPosCurves &amp;lt;&amp;gt; 0 Then
		Dim dDistance As Double = GetMinimumDistance(oCurve1, oCurve2, lPosCurves)
		Call SetPositionView(oCurve1.Parent.Parent, dDistance, lPosCurves)
	Else
		MessageBox.Show("The curves are not parallel, or your option is not described in a circle.", _
						"Error!", MessageBoxButtons.OK, MessageBoxIcon.Error)
	End If
End Sub

Private Function GetPositionCurve(ByVal oCurve1 As DrawingCurveSegment, ByVal oCurve2 As DrawingCurveSegment) As Long
	Dim dCurve1StartX, dCurve1StartY, dCurve1EndX, dCurve1EndY, dCurve2StartX, dCurve2StartY, dCurve2EndX, dCurve2EndY As Double
	Dim oPoint1, oPoint2 As Point2d
	If oCurve1.GeometryType = Curve2dTypeEnum.kLineSegmentCurve2d Then
		dCurve1StartX = Round(oCurve1.StartPoint.X, 5)
		dCurve1StartY = Round(oCurve1.StartPoint.Y, 5)
		dCurve1EndX = Round(oCurve1.EndPoint.X, 5)
		dCurve1EndY = Round(oCurve1.EndPoint.Y, 5)
	Else If oCurve1.GeometryType = Curve2dTypeEnum.kCircleCurve2d Then
		oPoint1 = oCurve1.Geometry.Center
	Else If oCurve1.GeometryType = Curve2dTypeEnum.kCircularArcCurve2d Then
		oPoint1 = oCurve1.Geometry.Center
	End If
	If oCurve2.GeometryType = Curve2dTypeEnum.kLineSegmentCurve2d Then
		dCurve2StartX = Round(oCurve2.StartPoint.X, 5)
		dCurve2StartY = Round(oCurve2.StartPoint.Y, 5)
		dCurve2EndX = Round(oCurve2.EndPoint.X, 5)
		dCurve2EndY = Round(oCurve2.EndPoint.Y, 5)
	Else If oCurve2.GeometryType = Curve2dTypeEnum.kCircleCurve2d Then
		oPoint2 = oCurve2.Geometry.Center
	Else If oCurve2.GeometryType = Curve2dTypeEnum.kCircularArcCurve2d Then
		oPoint2 = oCurve2.Geometry.Center
	End If
	If oCurve1.GeometryType = Curve2dTypeEnum.kLineSegmentCurve2d Then
		If oCurve2.GeometryType = Curve2dTypeEnum.kLineSegmentCurve2d Then
			If dCurve1StartX = dCurve1EndX And dCurve2StartX = dCurve2EndX Then
				If dCurve1StartX &amp;gt;= dCurve2StartX Then
					Return 3
				Else
					Return 4
				End If
			Else If dCurve1StartY = dCurve1EndY And dCurve2StartY = dCurve2EndY Then
				If dCurve1StartY &amp;gt;= dCurve2StartY Then
					Return 1
				Else
					Return 2
				End If
			End If
		Else If oCurve2.GeometryType = Curve2dTypeEnum.kCircleCurve2d Or _
			oCurve2.GeometryType = Curve2dTypeEnum.kCircularArcCurve2d Then
			If dCurve1StartX = dCurve1EndX Then
				If oPoint2.X &amp;gt;= dCurve1StartX Then
					Return 7
				Else
					Return 8
				End If
			Else If dCurve1StartY = dCurve1EndY Then
				If oPoint2.Y &amp;gt;= dCurve1StartY Then
					Return 5
				Else
					Return 6
				End If
			End If
		End If
	Else If oCurve1.GeometryType = Curve2dTypeEnum.kCircleCurve2d Or _
		oCurve1.GeometryType = Curve2dTypeEnum.kCircularArcCurve2d Then
		If oCurve2.GeometryType = Curve2dTypeEnum.kLineSegmentCurve2d Then
			If dCurve2StartX = dCurve2EndX Then
				If oPoint1.X &amp;gt;= dCurve2StartX Then
					Return 11
				Else
					Return 12
				End If
			Else If dCurve2StartY = dCurve2EndY Then
				If oPoint1.Y &amp;gt;= dCurve2StartY Then
					Return 9
				Else
					Return 10
				End If
			End If
		Else If oCurve2.GeometryType = Curve2dTypeEnum.kCircleCurve2d Or _
			oCurve2.GeometryType = Curve2dTypeEnum.kCircularArcCurve2d Then
			Dim bvResult As DialogResult
			If oCurve1.Parent.Parent.Aligned Then
				Dim oView, oParenView As DrawingView
				oView = oCurve1.Parent.Parent
				oParenView = oCurve1.Parent.Parent.ParentView
				If (Math.Abs(oView.Top - oParenView.Top) &amp;lt; 0.0000001) Then
					bvResult = vbYes
				ElseIf (Math.Abs(oView.Left - oParenView.Left) &amp;lt; 0.0000001) Then
					bvResult = vbNo
				End If
			End If
			If bvResult = 0 Then
				bvResult = MessageBox.Show("Select 'Yes' to center vertically and 'No' to center horizontally.", _
							"Centering.", MessageBoxButtons.YesNoCancel, MessageBoxIcon.Question)
			End If
			If bvResult = vbYes Then
				If oPoint1.X &amp;gt;= oPoint2.X Then
					Return 15
				Else
					Return 16
				End If
			Else If bvResult = vbNo Then
				If oPoint1.Y &amp;gt;= oPoint2.Y Then
					Return 13
				Else
					Return 14
				End If
			End If
		End If
	End If
	Return 0
End Function

Private Function GetMinimumDistance(ByVal oCurve1 As DrawingCurveSegment, ByVal oCurve2 As DrawingCurveSegment, ByVal lPosCurves As Long) As Double
	Select Case lPosCurves
	Case 1, 2 : Return Math.Abs(oCurve1.StartPoint.Y - oCurve2.StartPoint.Y)
	Case 3, 4 : Return Math.Abs(oCurve1.StartPoint.X - oCurve2.StartPoint.X)
	Case 5, 6 : Return Math.Abs(oCurve1.StartPoint.Y - oCurve2.Geometry.Center.Y)
	Case 7, 8 : Return Math.Abs(oCurve1.StartPoint.X - oCurve2.Geometry.Center.X)
	Case 9, 10 : Return Math.Abs(oCurve1.Geometry.Center.Y - oCurve2.StartPoint.Y)
	Case 11, 12 : Return Math.Abs(oCurve1.Geometry.Center.X - oCurve2.StartPoint.X)
	Case 13, 14 : Return Math.Abs(oCurve1.Geometry.Center.Y - oCurve2.Geometry.Center.Y)
	Case 15, 16 : Return Math.Abs(oCurve1.Geometry.Center.X - oCurve2.Geometry.Center.X)
	End Select
	Return 0
End Function

Private Function SetPositionView(ByVal oView As DrawingView, ByVal dDistance As Double, ByVal lPosCurves As Long)
	Dim oTG As TransientGeometry = ThisApplication.TransientGeometry
	Select Case lPosCurves
	Case 1, 5, 9, 13 : oView.Position = oTG.CreatePoint2d(oView.Position.X, oView.Position.Y - dDistance)
	Case 2, 6, 10, 14 : oView.Position = oTG.CreatePoint2d(oView.Position.X, oView.Position.Y + dDistance)
	Case 3, 7, 11, 15 : oView.Position = oTG.CreatePoint2d(oView.Position.X - dDistance, oView.Position.Y)
	Case 4, 8, 12, 16 : oView.Position = oTG.CreatePoint2d(oView.Position.X + dDistance, oView.Position.Y)
	End Select
End Function&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Jul 2023 05:07:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/view-justification-of-drawing-detail/m-p/12109240#M40975</guid>
      <dc:creator>Andrii_Humeniuk</dc:creator>
      <dc:date>2023-07-19T05:07:07Z</dc:date>
    </item>
    <item>
      <title>Re: View Justification of Drawing Detail</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/view-justification-of-drawing-detail/m-p/12109255#M40976</link>
      <description>It works well. Thank you very much &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;</description>
      <pubDate>Tue, 18 Jul 2023 12:46:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/view-justification-of-drawing-detail/m-p/12109255#M40976</guid>
      <dc:creator>dev8FGGQ</dc:creator>
      <dc:date>2023-07-18T12:46:27Z</dc:date>
    </item>
  </channel>
</rss>

