{"id":1359,"date":"2019-03-25T17:34:45","date_gmt":"2019-03-25T20:34:45","guid":{"rendered":"http:\/\/xexeu.elipse.com.br\/pt\/basic-vbscript-for-elipse-e3-lesson-2-reference-to-objects\/"},"modified":"2019-05-29T17:05:27","modified_gmt":"2019-05-29T20:05:27","slug":"basic-vbscript-for-elipse-e3-lesson-2-reference-to-objects","status":"publish","type":"post","link":"https:\/\/kb.elipse.com.br\/en\/basic-vbscript-for-elipse-e3-lesson-2-reference-to-objects\/","title":{"rendered":"Basic VBScript for Elipse E3: Lesson 2 &#8211; Reference to Objects"},"content":{"rendered":"<p><span style=\"color: #990099; font-size: large;\"><span style=\"font-weight: bold;\">Application<\/span><\/span><\/p>\n<p>The word Application represents the application as a whole, and<span style=\"background-color: #ffffff;\"> indicates functions that are either executed in the E3 Viewer or executed in the server.<\/span> The object Application knows in advance which functions must be executed<span style=\"background-color: #ffffff;\"> in either case.<\/span> It is not possible, however, to execute functions from the<span style=\"background-color: #ffffff;\"> E3<\/span> Viewer in the server, or functions from the server in the E3 Viewer.<\/p>\n<p>Example:<\/p>\n<p>Application.ChangePassword(): Viewer&#8217;s function that allows to change current user&#8217;s password.<br \/>\nApplication.Trace (message): Server&#8217;s function that writes in a text file.<\/p>\n<p><span style=\"font-size: large;\"><span style=\"font-weight: bold; font-style: italic; color: #3366ff;\">Exercises:<\/span><\/span><br \/>\n<br style=\"color: #0000ff;\" \/><span style=\"color: #0000ff; font-weight: bold;\">Viewer<\/span><br \/>\n1. Create at least 2 users, being one of them an Administrator.<br \/>\n2. Create a button to login (Login method)<br \/>\n3. Create a button to change user&#8217;s password (ChangePassword method).<br \/>\n4. Create a button to call the user administration. (UserAdministration method)<br \/>\n5. Create a button to confirm password(PasswordConfirm method)<br \/>\n6. Create a button to display the user&#8217;s full name(GetFullUserName method)<\/p>\n<p><span style=\"color: #0000ff; font-weight: bold;\">Server<\/span><br \/>\n7. Create an Internal tag.<br \/>\n8. In Internal Tag&#8217;s OnStartRunning event, use Trace method to create a text file with the message &#8220;Tag started&#8221;.<\/p>\n<p><span style=\"color: #990099; font-size: large;\"><span style=\"font-weight: bold;\">Server Objects<\/span><\/span><\/p>\n<p>To access an object that is being executed in the server through a Screen Object or an ElipseX, use the GetObject method from the Application Object.<\/p>\n<p>Example:<\/p>\n<div style=\"text-align: center;\"><img loading=\"lazy\" title=\"\" src=\"http:\/\/kb.elipse.com.br\/pt-br\/images\/ID2109\/fig_006.bmp\" alt=\"\" width=\"159\" height=\"133\" align=\"bottom\" border=\"0\" \/><br \/>\n<span style=\"font-size: xx-small;\">Figure 6<\/span><\/div>\n<p>Application.GetObject(&#8220;Data.InternalTag1&#8221;): InternalTag from the Data Server.<br \/>\nApplication.GetObject(&#8220;Database&#8221;): Database<\/p>\n<p><span style=\"font-size: large;\"><span style=\"font-weight: bold; font-style: italic; color: #3366ff;\">Exercises:<\/span><\/span><\/p>\n<p>9. Insert a demo tag and an internal tag in the application.<br \/>\n10. Display on a MessageBox the name of the internal tag created in the previous exercise.<br \/>\n11. Display on a MessageBox the name of the demo tag created in the previous exercise.<\/p>\n<p><span style=\"font-size: large;\"><span style=\"color: #990099; font-weight: bold;\">Item<\/span><\/span><\/p>\n<p><span style=\"background-color: #ffffff;\">The I<\/span>tem method returns a reference to the child object from the object that called it. This method can search an object by name or by index (integer). If the index or the specified name is valid, the Item() method returns the reference to the object. Otherwise, the method returns an &#8220;invalid parameter&#8221; error.<\/p>\n<p>Example:<\/p>\n<div style=\"text-align: center;\"><img loading=\"lazy\" title=\"\" src=\"http:\/\/kb.elipse.com.br\/pt-br\/images\/ID2109\/fig_007.bmp\" alt=\"\" width=\"137\" height=\"70\" align=\"bottom\" border=\"0\" \/><br \/>\n<span style=\"font-size: xx-small;\">Figure 7<\/span><\/div>\n<p>Screen.Item(&#8220;E3Browser1&#8221;): E3Browser1 object that is on screen.<br \/>\nScreen.Item(&#8220;E3Browser1&#8221;).Item(&#8220;Query1&#8221;):Query1 Object that is in E3Browser.<\/p>\n<p><span style=\"font-size: large;\"><span style=\"font-weight: bold; font-style: italic; color: #3366ff;\">Exercises:<\/span><\/span><\/p>\n<p>12. Create two texts on the screen with any message you wish.<br \/>\n13. Group texts.<br \/>\n14. Display on a MessageBox the name of the group created in the previous exercise.<br \/>\n15. Display on a MessageBox the name of the text created in the previous exercise.<br \/>\n16. Which of the alternatives is the correct way to refer to Query1 object?<\/p>\n<div style=\"text-align: center;\"><img loading=\"lazy\" title=\"\" src=\"http:\/\/kb.elipse.com.br\/pt-br\/images\/ID2109\/fig_008.bmp\" alt=\"\" width=\"471\" height=\"90\" align=\"bottom\" border=\"0\" \/><br \/>\n<span style=\"font-size: xx-small;\">Figure 8<\/span><\/div>\n<p><span style=\"font-weight: bold; font-size: large;\"><span style=\"color: #990099;\">Set Command<\/span><\/span><\/p>\n<p>The VBScript implements the concept of object-oriented languages, allowing that a variable of Variant type takes form of any object, through the Set command. Thus, the variable <span style=\"background-color: #ffffff;\">serves <\/span>as a pointer to the desired object, allowing accessing its methods and properties.<\/p>\n<p>Example:<br \/>\n<br style=\"font-family: Courier New; background-color: #cccccc;\" \/><span style=\"font-family: Courier New; background-color: #cccccc;\">Set rectangle = Screen.Item(&#8220;Rectangle1&#8221;) <\/span><br style=\"font-family: Courier New; background-color: #cccccc;\" \/><span style=\"font-family: Courier New; background-color: #cccccc;\">rectangle.BackgroudColor = RGB (255,0,0) <\/span><\/p>\n<p>Without the Set command, the same call would have to be:<\/p>\n<p><span style=\"font-family: Courier New; background-color: #cccccc;\">Screen.Item(&#8220;Rectangle1&#8221;).BackgroudColor = RGB(255,0,0)<\/span><\/p>\n<p>Apparently, there is no advantage in this case, because it all can be done in just one code line. However, if other operations are necessary just below the same script, the process becomes simpler and faster if the call from Item() method has not been placed on all lines.<\/p>\n<p>Bad example:<br \/>\n<br style=\"background-color: #cccccc; font-family: Courier New;\" \/><span style=\"background-color: #cccccc; font-family: Courier New;\">Screen.Item(&#8220;Rectangle1&#8221;).BackgroudColor = RGB(212,208,20) <\/span><br style=\"background-color: #cccccc; font-family: Courier New;\" \/><span style=\"background-color: #cccccc; font-family: Courier New;\">Screen.Item(&#8220;Rectangle1&#8221;).Height = 500<\/span><br style=\"background-color: #cccccc; font-family: Courier New;\" \/><span style=\"background-color: #cccccc; font-family: Courier New;\">Screen.Item(&#8220;Rectangle1&#8221;).Width = 500<\/span><\/p>\n<p><span style=\"background-color: #ffffff;\">Better <\/span>example:<\/p>\n<p><span style=\"background-color: #cccccc; font-family: Courier New;\">Set Rectangle = Screen.Item(&#8220;Rectangle1&#8221;)<\/span><br style=\"background-color: #cccccc; font-family: Courier New;\" \/><span style=\"background-color: #cccccc; font-family: Courier New;\">Rectangle.BackgroudColor = RGB(212,208,20) <\/span><br style=\"background-color: #cccccc; font-family: Courier New;\" \/><span style=\"background-color: #cccccc; font-family: Courier New;\">Rectangle.Height = 500<\/span><br style=\"background-color: #cccccc; font-family: Courier New;\" \/><span style=\"background-color: #cccccc; font-family: Courier New;\">Rectangle.Width = 500<\/span><\/p>\n<p><span style=\"font-size: large;\"><span style=\"font-weight: bold; font-style: italic; color: #3366ff;\">Exercises:<\/span><\/span><\/p>\n<p>17. Insert a chart onto screen with a pen. Set it to display legends.<br \/>\n18. By clicking on the chart&#8217;s legend, display on a message box both pen&#8217;s color and name. Use Set command.<br \/>\n19. By clicking on the chart, show both pen&#8217;s X and Y positions on two displays on screen.<\/p>\n<h3>Attachments:<\/h3>\n<p><a href=\"\/wp-content\/uploads\/2019\/03\/Lesson2.zip\">Lesson2.zip<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Autor<br \/>\nPaula Pereira En\u00e9as<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_exactmetrics_skip_tracking":false,"_exactmetrics_sitenote_active":false,"_exactmetrics_sitenote_note":"","_exactmetrics_sitenote_category":0},"categories":[763],"tags":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v19.8 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Basic VBScript for Elipse E3: Lesson 2 - Basic VBScript for Elipse E3: Lesson 2 - Reference to Objects[:] - Elipse Knowledgebase<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/kb.elipse.com.br\/en\/basic-vbscript-for-elipse-e3-lesson-2-reference-to-objects\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Basic VBScript for Elipse E3: Lesson 2 - Reference to Objects\" \/>\n<meta property=\"og:description\" content=\"Autor Paula Pereira En\u00e9as\" \/>\n<meta property=\"og:url\" content=\"https:\/\/kb.elipse.com.br\/en\/basic-vbscript-for-elipse-e3-lesson-2-reference-to-objects\/\" \/>\n<meta property=\"og:site_name\" content=\"Elipse Knowledgebase\" \/>\n<meta property=\"article:publisher\" content=\"http:\/\/www.facebook.com\/elipsesoftware\" \/>\n<meta property=\"article:published_time\" content=\"2019-03-25T20:34:45+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2019-05-29T20:05:27+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/kb.elipse.com.br\/pt-br\/images\/ID2109\/fig_006.bmp\" \/>\n<meta name=\"author\" content=\"Elipse Software\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Elipse Software\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/kb.elipse.com.br\/en\/basic-vbscript-for-elipse-e3-lesson-2-reference-to-objects\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/kb.elipse.com.br\/en\/basic-vbscript-for-elipse-e3-lesson-2-reference-to-objects\/\"},\"author\":{\"name\":\"Elipse Software\",\"@id\":\"https:\/\/kb.elipse.com.br\/#\/schema\/person\/def69ea453ea60b250497b89225a9f87\"},\"headline\":\"Basic VBScript for Elipse E3: Lesson 2 &#8211; Reference to Objects\",\"datePublished\":\"2019-03-25T20:34:45+00:00\",\"dateModified\":\"2019-05-29T20:05:27+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/kb.elipse.com.br\/en\/basic-vbscript-for-elipse-e3-lesson-2-reference-to-objects\/\"},\"wordCount\":1199,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/kb.elipse.com.br\/#organization\"},\"articleSection\":[\"Scripts\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/kb.elipse.com.br\/en\/basic-vbscript-for-elipse-e3-lesson-2-reference-to-objects\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/kb.elipse.com.br\/en\/basic-vbscript-for-elipse-e3-lesson-2-reference-to-objects\/\",\"url\":\"https:\/\/kb.elipse.com.br\/en\/basic-vbscript-for-elipse-e3-lesson-2-reference-to-objects\/\",\"name\":\"[:pt]Basic VBScript for Elipse E3: Lesson 2 - Reference to Objects[:en]Basic VBScript for Elipse E3: Lesson 2 - Reference to Objects[:] - Elipse Knowledgebase\",\"isPartOf\":{\"@id\":\"https:\/\/kb.elipse.com.br\/#website\"},\"datePublished\":\"2019-03-25T20:34:45+00:00\",\"dateModified\":\"2019-05-29T20:05:27+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/kb.elipse.com.br\/en\/basic-vbscript-for-elipse-e3-lesson-2-reference-to-objects\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/kb.elipse.com.br\/en\/basic-vbscript-for-elipse-e3-lesson-2-reference-to-objects\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/kb.elipse.com.br\/en\/basic-vbscript-for-elipse-e3-lesson-2-reference-to-objects\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"In\u00edcio\",\"item\":\"https:\/\/kb.elipse.com.br\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Basic VBScript for Elipse E3: Lesson 2 &#8211; Reference to Objects\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/kb.elipse.com.br\/#website\",\"url\":\"https:\/\/kb.elipse.com.br\/\",\"name\":\"Elipse Knowledgebase\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/kb.elipse.com.br\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/kb.elipse.com.br\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/kb.elipse.com.br\/#organization\",\"name\":\"Elipse Software\",\"url\":\"https:\/\/kb.elipse.com.br\/\",\"sameAs\":[\"http:\/\/www.facebook.com\/elipsesoftware\"],\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/kb.elipse.com.br\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/kb.elipse.com.br\/wp-content\/uploads\/2019\/05\/schererelipse-com-br\/logoElipse.png\",\"contentUrl\":\"https:\/\/kb.elipse.com.br\/wp-content\/uploads\/2019\/05\/schererelipse-com-br\/logoElipse.png\",\"width\":161,\"height\":58,\"caption\":\"Elipse Software\"},\"image\":{\"@id\":\"https:\/\/kb.elipse.com.br\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/kb.elipse.com.br\/#\/schema\/person\/def69ea453ea60b250497b89225a9f87\",\"name\":\"Elipse Software\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/kb.elipse.com.br\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/ff1f7ec38f4687b06f6851d97b3cd2d0?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/ff1f7ec38f4687b06f6851d97b3cd2d0?s=96&d=mm&r=g\",\"caption\":\"Elipse Software\"},\"url\":\"https:\/\/kb.elipse.com.br\/en\/author\/webmasterelipse-com-br\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Basic VBScript for Elipse E3: Lesson 2 - Basic VBScript for Elipse E3: Lesson 2 - Reference to Objects[:] - Elipse Knowledgebase","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/kb.elipse.com.br\/en\/basic-vbscript-for-elipse-e3-lesson-2-reference-to-objects\/","og_locale":"en_US","og_type":"article","og_title":"[:pt]Basic VBScript for Elipse E3: Lesson 2 - Reference to Objects[:en]Basic VBScript for Elipse E3: Lesson 2 - Reference to Objects[:] - Elipse Knowledgebase","og_description":"[:pt]Autor Paula Pereira En\u00e9as[:en]Autor Paula Pereira En\u00e9as[:]","og_url":"https:\/\/kb.elipse.com.br\/en\/basic-vbscript-for-elipse-e3-lesson-2-reference-to-objects\/","og_site_name":"Elipse Knowledgebase","article_publisher":"http:\/\/www.facebook.com\/elipsesoftware","article_published_time":"2019-03-25T20:34:45+00:00","article_modified_time":"2019-05-29T20:05:27+00:00","og_image":[{"url":"http:\/\/kb.elipse.com.br\/pt-br\/images\/ID2109\/fig_006.bmp"}],"author":"Elipse Software","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Elipse Software","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/kb.elipse.com.br\/en\/basic-vbscript-for-elipse-e3-lesson-2-reference-to-objects\/#article","isPartOf":{"@id":"https:\/\/kb.elipse.com.br\/en\/basic-vbscript-for-elipse-e3-lesson-2-reference-to-objects\/"},"author":{"name":"Elipse Software","@id":"https:\/\/kb.elipse.com.br\/#\/schema\/person\/def69ea453ea60b250497b89225a9f87"},"headline":"Basic VBScript for Elipse E3: Lesson 2 &#8211; Reference to Objects","datePublished":"2019-03-25T20:34:45+00:00","dateModified":"2019-05-29T20:05:27+00:00","mainEntityOfPage":{"@id":"https:\/\/kb.elipse.com.br\/en\/basic-vbscript-for-elipse-e3-lesson-2-reference-to-objects\/"},"wordCount":1199,"commentCount":0,"publisher":{"@id":"https:\/\/kb.elipse.com.br\/#organization"},"articleSection":["Scripts"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/kb.elipse.com.br\/en\/basic-vbscript-for-elipse-e3-lesson-2-reference-to-objects\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/kb.elipse.com.br\/en\/basic-vbscript-for-elipse-e3-lesson-2-reference-to-objects\/","url":"https:\/\/kb.elipse.com.br\/en\/basic-vbscript-for-elipse-e3-lesson-2-reference-to-objects\/","name":"[:pt]Basic VBScript for Elipse E3: Lesson 2 - Reference to Objects[:en]Basic VBScript for Elipse E3: Lesson 2 - Reference to Objects[:] - Elipse Knowledgebase","isPartOf":{"@id":"https:\/\/kb.elipse.com.br\/#website"},"datePublished":"2019-03-25T20:34:45+00:00","dateModified":"2019-05-29T20:05:27+00:00","breadcrumb":{"@id":"https:\/\/kb.elipse.com.br\/en\/basic-vbscript-for-elipse-e3-lesson-2-reference-to-objects\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/kb.elipse.com.br\/en\/basic-vbscript-for-elipse-e3-lesson-2-reference-to-objects\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/kb.elipse.com.br\/en\/basic-vbscript-for-elipse-e3-lesson-2-reference-to-objects\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"In\u00edcio","item":"https:\/\/kb.elipse.com.br\/en\/"},{"@type":"ListItem","position":2,"name":"Basic VBScript for Elipse E3: Lesson 2 &#8211; Reference to Objects"}]},{"@type":"WebSite","@id":"https:\/\/kb.elipse.com.br\/#website","url":"https:\/\/kb.elipse.com.br\/","name":"Elipse Knowledgebase","description":"","publisher":{"@id":"https:\/\/kb.elipse.com.br\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/kb.elipse.com.br\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/kb.elipse.com.br\/#organization","name":"Elipse Software","url":"https:\/\/kb.elipse.com.br\/","sameAs":["http:\/\/www.facebook.com\/elipsesoftware"],"logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/kb.elipse.com.br\/#\/schema\/logo\/image\/","url":"https:\/\/kb.elipse.com.br\/wp-content\/uploads\/2019\/05\/schererelipse-com-br\/logoElipse.png","contentUrl":"https:\/\/kb.elipse.com.br\/wp-content\/uploads\/2019\/05\/schererelipse-com-br\/logoElipse.png","width":161,"height":58,"caption":"Elipse Software"},"image":{"@id":"https:\/\/kb.elipse.com.br\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/kb.elipse.com.br\/#\/schema\/person\/def69ea453ea60b250497b89225a9f87","name":"Elipse Software","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/kb.elipse.com.br\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/ff1f7ec38f4687b06f6851d97b3cd2d0?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ff1f7ec38f4687b06f6851d97b3cd2d0?s=96&d=mm&r=g","caption":"Elipse Software"},"url":"https:\/\/kb.elipse.com.br\/en\/author\/webmasterelipse-com-br\/"}]}},"_links":{"self":[{"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/posts\/1359"}],"collection":[{"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/comments?post=1359"}],"version-history":[{"count":2,"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/posts\/1359\/revisions"}],"predecessor-version":[{"id":6739,"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/posts\/1359\/revisions\/6739"}],"wp:attachment":[{"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/media?parent=1359"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/categories?post=1359"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/tags?post=1359"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}