<?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 Title size Parameters? in Libraries &amp; objects</title>
    <link>https://community.graphisoft.com/t5/Libraries-objects/Title-size-Parameters/m-p/50383#M33357</link>
    <description>&lt;DIV class="actalk-migrated-content"&gt;&lt;T&gt;Has anyone figured out how to get the widht/height of a placed Drawing for use in a title object?&lt;BR /&gt;
&lt;BR /&gt;
How about any "request" information or built-in parameters? There does not seem to be anything in the GDL Dev Kit or the Reference Manual about it.&lt;/T&gt;&lt;/DIV&gt;</description>
    <pubDate>Wed, 02 Aug 2006 13:16:56 GMT</pubDate>
    <dc:creator>TomWaltz</dc:creator>
    <dc:date>2006-08-02T13:16:56Z</dc:date>
    <item>
      <title>Title size Parameters?</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Title-size-Parameters/m-p/50383#M33357</link>
      <description>&lt;DIV class="actalk-migrated-content"&gt;&lt;T&gt;Has anyone figured out how to get the widht/height of a placed Drawing for use in a title object?&lt;BR /&gt;
&lt;BR /&gt;
How about any "request" information or built-in parameters? There does not seem to be anything in the GDL Dev Kit or the Reference Manual about it.&lt;/T&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 02 Aug 2006 13:16:56 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Title-size-Parameters/m-p/50383#M33357</guid>
      <dc:creator>TomWaltz</dc:creator>
      <dc:date>2006-08-02T13:16:56Z</dc:date>
    </item>
    <item>
      <title>Re: Title size Parameters?</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Title-size-Parameters/m-p/50384#M33358</link>
      <description>Create a new object and change to subtype "title block"/"drawing title" (? "Zeichnungstitel" in GER). You will see some optinal parameters (blue) wich will contain the informations you are looking for. (I guess &lt;E&gt;&lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/E&gt; )</description>
      <pubDate>Wed, 02 Aug 2006 13:51:06 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Title-size-Parameters/m-p/50384#M33358</guid>
      <dc:creator>Frank Beister</dc:creator>
      <dc:date>2006-08-02T13:51:06Z</dc:date>
    </item>
    <item>
      <title>Re: Title size Parameters?</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Title-size-Parameters/m-p/50385#M33359</link>
      <description>I was hoping to find a little more information the the rectangle arrays. I'll have to spend some quality time with them later this week when I have a few less fires burning.</description>
      <pubDate>Wed, 02 Aug 2006 15:10:15 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Title-size-Parameters/m-p/50385#M33359</guid>
      <dc:creator>TomWaltz</dc:creator>
      <dc:date>2006-08-02T15:10:15Z</dc:date>
    </item>
    <item>
      <title>Re: Title size Parameters?</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Title-size-Parameters/m-p/50386#M33360</link>
      <description>Maybe this will help you:
&lt;PRE&gt;IF  not(AC_TextFont="") THEN

	Zeichensatz = AC_TextFont
	sh = AC_TextSize
	! HIDEPARAMETER "Zeichensatz","sh"

	ENDIF


!+++ DEFINITIONS

start = 500
GOSUB 100 !=ende

DEFINE STYLE "Links" zeichensatz, sh,3,1
DEFINE STYLE "Rechts" zeichensatz, sh,1,0

s=-sh/1000*GLOB_SCALE*1.5
t=-s/2



!+++ PRINT

FOR unterprogramm=start TO ende STEP 5
	GOSUB unterprogramm
	NEXT unterprogramm

END


!+++ SUBROUTINES

500:
STYLE "Links"  : TEXT2 0,f*s,"AC_ManualPosition: "
STYLE "Rechts" : TEXT2 0,f*s,AC_ManualPosition
f=f+1
RETURN

505:
STYLE "Links"  : TEXT2 0,f*s,"AC_DrawingGUID: "
STYLE "Rechts" : TEXT2 0,f*s,AC_DrawingGUID
f=f+1
RETURN

510:
STYLE "Links"  : TEXT2 0,f*s,"AC_TitleFitMode: "
STYLE "Rechts" : TEXT2 0,f*s,AC_TitleFitMode
f=f+1
RETURN

515:
STYLE "Links"  : TEXT2 0,f*s,"AC_TextFont: "
STYLE "Rechts" : TEXT2 0,f*s,AC_TextFont
f=f+1
RETURN

520:
STYLE "Links"  : TEXT2 0,f*s,"AC_TextSize: "
STYLE "Rechts" : TEXT2 0,f*s,AC_TextSize
f=f+1
RETURN

525:
STYLE "Links"  : TEXT2 0,f*s,"AC_TextPen: "
STYLE "Rechts" : TEXT2 0,f*s,AC_TextPen
f=f+1
RETURN

530:
STYLE "Links"  : TEXT2 0,f*s,"AC_TextStyle: "
STYLE "Rechts" : TEXT2 0,f*s,AC_TextStyle
f=f+1
RETURN

535:
STYLE "Links"  : TEXT2 0,f*s,"AC_UseUniformTextFormat: "
STYLE "Rechts" : TEXT2 0,f*s,AC_UseUniformTextFormat
f=f+1
RETURN

540:
STYLE "Links"  : TEXT2 0,f*s,"AC_PreviewType: "
STYLE "Rechts" : TEXT2 0,f*s,AC_PreviewType
f=f+1
RETURN

545:
STYLE "Links"  : TEXT2 0,f*s,"AC_ConvertedTitle: "
STYLE "Rechts" : TEXT2 0,f*s,AC_ConvertedTitle
f=f+1
RETURN

550:
STYLE "Links"  : TEXT2 0,f*s,"AC_LayoutRect[1]: "
STYLE "Rechts" : TEXT2 0,f*s,AC_LayoutRect[1]
f=f+1
RETURN

555:
STYLE "Links"  : TEXT2 0,f*s,"AC_LayoutRect[2]: "
STYLE "Rechts" : TEXT2 0,f*s,AC_LayoutRect[2]
f=f+1
RETURN

560:
STYLE "Links"  : TEXT2 0,f*s,"AC_LayoutRect[3]: "
STYLE "Rechts" : TEXT2 0,f*s,AC_LayoutRect[3]
f=f+1
RETURN

565:
STYLE "Links"  : TEXT2 0,f*s,"AC_LayoutRect[4]: "
STYLE "Rechts" : TEXT2 0,f*s,AC_LayoutRect[4]
f=f+1
RETURN

570:
STYLE "Links"  : TEXT2 0,f*s,"AC_LayoutRect[5]: "
STYLE "Rechts" : TEXT2 0,f*s,AC_LayoutRect[5]
f=f+1
RETURN

575:
STYLE "Links"  : TEXT2 0,f*s,"AC_GridRect[1]: "
STYLE "Rechts" : TEXT2 0,f*s,AC_GridRect[1]
f=f+1
RETURN

580:
STYLE "Links"  : TEXT2 0,f*s,"AC_GridRect[2]: "
STYLE "Rechts" : TEXT2 0,f*s,AC_GridRect[2]
f=f+1
RETURN

585:
STYLE "Links"  : TEXT2 0,f*s,"AC_GridRect[3]: "
STYLE "Rechts" : TEXT2 0,f*s,AC_GridRect[3]
f=f+1
RETURN

590:
STYLE "Links"  : TEXT2 0,f*s,"AC_GridRect[4]: "
STYLE "Rechts" : TEXT2 0,f*s,AC_GridRect[4]
f=f+1
RETURN

595:
STYLE "Links"  : TEXT2 0,f*s,"AC_GridRect[5]: "
STYLE "Rechts" : TEXT2 0,f*s,AC_GridRect[5]
f=f+1
RETURN

600:
STYLE "Links"  : TEXT2 0,f*s,"AC_DrawingRect[1]: "
STYLE "Rechts" : TEXT2 0,f*s,AC_DrawingRect[1]
f=f+1
RETURN

605:
STYLE "Links"  : TEXT2 0,f*s,"AC_DrawingRect[2]: "
STYLE "Rechts" : TEXT2 0,f*s,AC_DrawingRect[2]
f=f+1
RETURN

610:
STYLE "Links"  : TEXT2 0,f*s,"AC_DrawingRect[3]: "
STYLE "Rechts" : TEXT2 0,f*s,AC_DrawingRect[3]
f=f+1
RETURN

615:
STYLE "Links"  : TEXT2 0,f*s,"AC_DrawingRect[4]: "
STYLE "Rechts" : TEXT2 0,f*s,AC_DrawingRect[4]
f=f+1
RETURN

620:
STYLE "Links"  : TEXT2 0,f*s,"AC_DrawingRect[5]: "
STYLE "Rechts" : TEXT2 0,f*s,AC_DrawingRect[5]
f=f+1
RETURN

!+++ end of parameters
100:
ende = 620
RETURN&lt;/PRE&gt;

2D script is its right place. I try to figure it out, too.</description>
      <pubDate>Wed, 02 Aug 2006 15:18:05 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Title-size-Parameters/m-p/50386#M33360</guid>
      <dc:creator>Frank Beister</dc:creator>
      <dc:date>2006-08-02T15:18:05Z</dc:date>
    </item>
    <item>
      <title>Re: Title size Parameters?</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Title-size-Parameters/m-p/50387#M33361</link>
      <description>My first thought was that the DrawingRect was the size of the rectangle, but it seems to be a distance from the origin of the  marker to the extremes of the drawing size, so that [1] and [3] add up to the total X dimension and [2] and [4] add up to the total Y dimension.&lt;BR /&gt;
&lt;BR /&gt;
[5] does not seem to do anything.&lt;BR /&gt;
&lt;BR /&gt;
Is that what you have found as well?</description>
      <pubDate>Wed, 02 Aug 2006 15:41:10 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Title-size-Parameters/m-p/50387#M33361</guid>
      <dc:creator>TomWaltz</dc:creator>
      <dc:date>2006-08-02T15:41:10Z</dc:date>
    </item>
    <item>
      <title>Re: Title size Parameters?</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Title-size-Parameters/m-p/50388#M33362</link>
      <description>[5] is the drawing angle. But I do not find the relation to the origin. As strange as the label positioning. &lt;IMG src="https://community.graphisoft.com/legacyfs/online/emojis/icon_sad.gif" style="display : inline;" /&gt;</description>
      <pubDate>Wed, 02 Aug 2006 16:06:24 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Title-size-Parameters/m-p/50388#M33362</guid>
      <dc:creator>Frank Beister</dc:creator>
      <dc:date>2006-08-02T16:06:24Z</dc:date>
    </item>
    <item>
      <title>Re: Title size Parameters?</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Title-size-Parameters/m-p/50389#M33363</link>
      <description>&lt;BLOCKQUOTE&gt;F. wrote:&lt;BR /&gt;[5] is the drawing angle. But I do not find the relation to the origin. As strange as the label positioning. &lt;IMG src="https://community.graphisoft.com/legacyfs/online/emojis/icon_sad.gif" style="display : inline;" /&gt;&lt;/BLOCKQUOTE&gt;

Not surprisingly, it's in the same goofy logic as the labels, though.\&lt;BR /&gt;
&lt;BR /&gt;
Maybe GS would be kind enough to clue us in some day?</description>
      <pubDate>Wed, 02 Aug 2006 16:15:03 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Title-size-Parameters/m-p/50389#M33363</guid>
      <dc:creator>TomWaltz</dc:creator>
      <dc:date>2006-08-02T16:15:03Z</dc:date>
    </item>
    <item>
      <title>Re: Title size Parameters?</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Title-size-Parameters/m-p/50390#M33364</link>
      <description>I wish GS is doing these instead of me!&lt;BR /&gt;
&lt;BR /&gt;
Origin = bottom left corner of the Drawing.&lt;BR /&gt;
&lt;BR /&gt;
Drawing Width = AC_DrawingRect[3]&lt;BR /&gt;
Drawing Height = AC_DrawingRect[4]&lt;BR /&gt;
&lt;BR /&gt;
Layout Width = AC_LayoutRect[3]-AC_LayoutRect[1]&lt;BR /&gt;
Layout Height = AC_LayoutRect[4]-AC_LayoutRect[2]&lt;BR /&gt;
&lt;BR /&gt;
Cell Width = AC_GridRect[3]-AC_GridRect[1]&lt;BR /&gt;
Cell Height = AC_GridRect[4]-AC_GridRect[2]</description>
      <pubDate>Thu, 03 Aug 2006 01:37:06 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Title-size-Parameters/m-p/50390#M33364</guid>
      <dc:creator>LiHigh</dc:creator>
      <dc:date>2006-08-03T01:37:06Z</dc:date>
    </item>
    <item>
      <title>Re: Title size Parameters?</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Title-size-Parameters/m-p/50391#M33365</link>
      <description>The reference for the three rect parameters is zero-point of the object. Anywhere, where you position it on the layout screen. The orientation of the title block give also the rotation of the coordinate system for the three parameter arrays.&lt;BR /&gt;
Because it &lt;B&gt;is&lt;/B&gt; as the label coordinates, it is nothing new. &lt;E&gt;&lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/E&gt;&lt;BR /&gt;
&lt;BR /&gt;
The fifth parameter is, because there is no way to rotate the layout or the grid, every time a zero (angle).&lt;BR /&gt;
&lt;BR /&gt;
To get the right positioning "in space" the parameters &lt;FONT color="#006dff"&gt;SYMB_POS_X&lt;/FONT&gt; and &lt;FONT color="#006dff"&gt;SYMB_POS_Y&lt;/FONT&gt; work too.&lt;BR /&gt;
&lt;BR /&gt;
But some other of these optional parameters seem not to work:&lt;BR /&gt;
&lt;BR /&gt;
&lt;FONT color="#006dff"&gt;AC_ConvertedTitle&lt;BR /&gt;
AC_PreviewType&lt;BR /&gt;
AC_TitleFitMode&lt;/FONT&gt;</description>
      <pubDate>Thu, 03 Aug 2006 06:42:31 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Title-size-Parameters/m-p/50391#M33365</guid>
      <dc:creator>Frank Beister</dc:creator>
      <dc:date>2006-08-03T06:42:31Z</dc:date>
    </item>
  </channel>
</rss>

