<?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 How do I change un-editable object to editable in Archicad C++ API</title>
    <link>https://community.graphisoft.com/t5/Archicad-C-API/How-do-I-change-un-editable-object-to-editable/m-p/51823#M7560</link>
    <description>&lt;DIV class="actalk-migrated-content"&gt;How do I change un-editable object to editable&lt;BR /&gt;&lt;BR /&gt;I want change the position of the un_editable object, so, I want to change un_editable object into editable by using my API (programmatically). Is there is any command to change the object's editable property. &lt;BR /&gt;&lt;BR /&gt;Where is the object saving it's editable condition in the Element (Union) structue.&lt;BR /&gt;&lt;BR /&gt;How the Archicad 9.0 knows the element is editable or not?&lt;BR /&gt;&lt;BR /&gt;Thanking you...&lt;BR /&gt;&lt;BR /&gt;Ranga&lt;/DIV&gt;</description>
    <pubDate>Fri, 04 Aug 2023 14:24:44 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2023-08-04T14:24:44Z</dc:date>
    <item>
      <title>How do I change un-editable object to editable</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/How-do-I-change-un-editable-object-to-editable/m-p/51823#M7560</link>
      <description>&lt;DIV class="actalk-migrated-content"&gt;How do I change un-editable object to editable&lt;BR /&gt;&lt;BR /&gt;I want change the position of the un_editable object, so, I want to change un_editable object into editable by using my API (programmatically). Is there is any command to change the object's editable property. &lt;BR /&gt;&lt;BR /&gt;Where is the object saving it's editable condition in the Element (Union) structue.&lt;BR /&gt;&lt;BR /&gt;How the Archicad 9.0 knows the element is editable or not?&lt;BR /&gt;&lt;BR /&gt;Thanking you...&lt;BR /&gt;&lt;BR /&gt;Ranga&lt;/DIV&gt;</description>
      <pubDate>Fri, 04 Aug 2023 14:24:44 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/How-do-I-change-un-editable-object-to-editable/m-p/51823#M7560</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-08-04T14:24:44Z</dc:date>
    </item>
    <item>
      <title>Re: How do I change un-editable object to editable</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/How-do-I-change-un-editable-object-to-editable/m-p/51824#M7561</link>
      <description>&lt;BLOCKQUOTE&gt;Ranga wrote:&lt;BR /&gt;Where is the object saving it's editable condition in the Element (Union) structue.&lt;/BLOCKQUOTE&gt;
In API_Element, header.lockId locks the element when it has a non-zero value. Be careful though - there are many reasons for an element to be un-editable. For example, if you are in Teamwork any elements not in your workspace will be locked, in which case 'lockId' is the ID of the owner and you will not be able to unlock it. Elements can also be locked because they are on a locked layer, or are in a group with a locked element, etc. The methods for discovering these situations are all different, and it isn't always possible to make an element editable.</description>
      <pubDate>Tue, 02 Oct 2007 12:13:37 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/How-do-I-change-un-editable-object-to-editable/m-p/51824#M7561</guid>
      <dc:creator>Ralph Wessel</dc:creator>
      <dc:date>2007-10-02T12:13:37Z</dc:date>
    </item>
    <item>
      <title>Re: How do I change un-editable object to editable</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/How-do-I-change-un-editable-object-to-editable/m-p/51825#M7562</link>
      <description>Thanking you for your replay.&lt;BR /&gt;
&lt;BR /&gt;
My objects are locked by hot-link manager (Module). I want to move the all objects in that group (like initial drag, rotate and mirror). If I use ACAPI_Element_Change function for individual object I am getting APIERR_NOTEDITABLE error. So, I want to move whole group together. &lt;BR /&gt;
&lt;BR /&gt;
Is there is any function to move the whole group (Module (in the module all the elements are locked and are not editable)).&lt;BR /&gt;
&lt;BR /&gt;
How do we get the common properties of whole group.&lt;BR /&gt;
&lt;BR /&gt;
Ranga</description>
      <pubDate>Wed, 03 Oct 2007 00:19:42 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/How-do-I-change-un-editable-object-to-editable/m-p/51825#M7562</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-10-03T00:19:42Z</dc:date>
    </item>
    <item>
      <title>Re: How do I change un-editable object to editable</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/How-do-I-change-un-editable-object-to-editable/m-p/51826#M7563</link>
      <description>&lt;BLOCKQUOTE&gt;Ranga wrote:&lt;BR /&gt;My objects are locked by hot-link manager (Module). I want to move the all objects in that group (like initial drag, rotate and mirror). If I use ACAPI_Element_Change function for individual object I am getting APIERR_NOTEDITABLE error. So, I want to move whole group together. &lt;/BLOCKQUOTE&gt;
Have you tried setting "Suspend Groups" off?</description>
      <pubDate>Wed, 03 Oct 2007 15:48:09 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/How-do-I-change-un-editable-object-to-editable/m-p/51826#M7563</guid>
      <dc:creator>Ralph Wessel</dc:creator>
      <dc:date>2007-10-03T15:48:09Z</dc:date>
    </item>
    <item>
      <title>Re: How do I change un-editable object to editable</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/How-do-I-change-un-editable-object-to-editable/m-p/51827#M7564</link>
      <description>&lt;BLOCKQUOTE&gt;Ralph wrote:&lt;BR /&gt;&lt;BLOCKQUOTE&gt;Ranga wrote:&lt;BR /&gt;My objects are locked by hot-link manager (Module). I want to move the all objects in that group (like initial drag, rotate and mirror). If I use ACAPI_Element_Change function for individual object I am getting APIERR_NOTEDITABLE error. So, I want to move whole group together. &lt;/BLOCKQUOTE&gt;
Have you tried setting "Suspend Groups" off?&lt;/BLOCKQUOTE&gt;

&lt;BR /&gt;
Thank You!&lt;BR /&gt;
I thought I was going to have to scream.  &lt;IMG src="https://community.graphisoft.com/legacyfs/online/emojis/icon_smile.gif" style="display : inline;" /&gt;</description>
      <pubDate>Wed, 23 Jan 2008 15:22:35 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/How-do-I-change-un-editable-object-to-editable/m-p/51827#M7564</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-01-23T15:22:35Z</dc:date>
    </item>
  </channel>
</rss>

