<?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: Drawing Label position in Inventor Programming Forum</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-forum/drawing-label-position/m-p/7698400#M124982</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;is it possible to change where the view labels positioned in a template? Mine comes in at the top but i would like it at the bottom on all new drawings which would save considerable time.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Cheers&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 17 Jan 2018 19:03:19 GMT</pubDate>
    <dc:creator>JH81</dc:creator>
    <dc:date>2018-01-17T19:03:19Z</dc:date>
    <item>
      <title>Drawing Label position</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/drawing-label-position/m-p/4965734#M124978</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can anyone help me on how this can be set up please? i need tot change the view label position by code to change from the bottom of the drawing view to the top. I have found this- (from the API)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;DrawingStandardStyle.&lt;STRONG&gt;SetViewLabelDefaults&lt;/STRONG&gt;( &lt;STRONG&gt;&lt;EM&gt;ViewType&lt;/EM&gt;&lt;/STRONG&gt; As DrawingViewTypeEnum, &lt;STRONG&gt;&lt;EM&gt;Prefix&lt;/EM&gt;&lt;/STRONG&gt; As String, &lt;STRONG&gt;&lt;EM&gt;Visible&lt;/EM&gt;&lt;/STRONG&gt; As Boolean, &lt;STRONG&gt;&lt;EM&gt;FormattedText&lt;/EM&gt;&lt;/STRONG&gt; As String, &lt;STRONG&gt;&lt;EM&gt;ConstrainToBorder&lt;/EM&gt;&lt;/STRONG&gt; As Boolean, &lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;&lt;EM&gt;PlaceBelowView&lt;/EM&gt;&lt;/STRONG&gt;&lt;/FONT&gt; As Boolean )&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;how can i implement this to change the view? It is related to the highlighted text 'PlaceBelowView'&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Nigel&lt;/P&gt;</description>
      <pubDate>Wed, 16 Apr 2014 20:41:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/drawing-label-position/m-p/4965734#M124978</guid>
      <dc:creator>NachoShaw</dc:creator>
      <dc:date>2014-04-16T20:41:52Z</dc:date>
    </item>
    <item>
      <title>Re: Drawing Label position</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/drawing-label-position/m-p/4989554#M124979</link>
      <description>&lt;P&gt;ViewLabel position is controlled by&amp;nbsp;&lt;SPAN style="line-height: 1.2;"&gt;DrawingViewLabel.Position property.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="line-height: 1.2;"&gt;At any moment you may re-assign this property to another Point2d object.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 25 Apr 2014 09:07:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/drawing-label-position/m-p/4989554#M124979</guid>
      <dc:creator>Vladimir.Ananyev</dc:creator>
      <dc:date>2014-04-25T09:07:45Z</dc:date>
    </item>
    <item>
      <title>Re: Drawing Label position</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/drawing-label-position/m-p/6464468#M124980</link>
      <description>&lt;P&gt;Did you ever find out the answer to this? I'm looking for exactly the same thing&lt;/P&gt;</description>
      <pubDate>Thu, 28 Jul 2016 12:17:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/drawing-label-position/m-p/6464468#M124980</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-07-28T12:17:47Z</dc:date>
    </item>
    <item>
      <title>Re: Drawing Label position</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/drawing-label-position/m-p/6481222#M124981</link>
      <description>&lt;P&gt;If the views are already in place you can use this&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;Sub MoveLabelUp()
    Dim oDrawDoc As DrawingDocument
    Set oDrawDoc = ThisApplication.ActiveDocument
    
    Dim oSheet As Sheet
    Set oSheet = oDrawDoc.ActiveSheet
    
    Dim oViews As DrawingViews
    Set oViews = oSheet.DrawingViews
    
    Dim oView As DrawingView
    
    For Each oView In oViews
        Dim oLabelPt As Point2d
        Set oLabelPt = oView.Label.Position
        Set oLabelPt = ThisApplication.TransientGeometry.CreatePoint2d(oLabelPt.X, oLabelPt.Y + oView.Height + 1 * 2.54)
        oView.Label.Position = oLabelPt
    Next
End Sub&lt;/PRE&gt;</description>
      <pubDate>Fri, 05 Aug 2016 18:57:26 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/drawing-label-position/m-p/6481222#M124981</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-08-05T18:57:26Z</dc:date>
    </item>
    <item>
      <title>Re: Drawing Label position</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/drawing-label-position/m-p/7698400#M124982</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;is it possible to change where the view labels positioned in a template? Mine comes in at the top but i would like it at the bottom on all new drawings which would save considerable time.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Cheers&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jan 2018 19:03:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/drawing-label-position/m-p/7698400#M124982</guid>
      <dc:creator>JH81</dc:creator>
      <dc:date>2018-01-17T19:03:19Z</dc:date>
    </item>
    <item>
      <title>Re: Drawing Label position</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/drawing-label-position/m-p/7698478#M124983</link>
      <description>&lt;P&gt;The view label position is controlled by the active style.&lt;/P&gt;&lt;P&gt;Open the template file, go to the manage tab of the menu ribbon, click on styles, in the style and standard editor upper left panel expand the active standard, click on the active standard, on the view preferences tab, click on the below radio button.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jan 2018 19:21:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/drawing-label-position/m-p/7698478#M124983</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-01-17T19:21:46Z</dc:date>
    </item>
  </channel>
</rss>

