{"id":15516,"date":"2024-02-09T13:43:50","date_gmt":"2024-02-09T16:43:50","guid":{"rendered":"https:\/\/kb.elipse.com.br\/en\/?p=15516"},"modified":"2024-04-08T15:02:50","modified_gmt":"2024-04-08T18:02:50","slug":"elipse-e3-power-section-report-e3sectionreport","status":"publish","type":"post","link":"https:\/\/kb.elipse.com.br\/en\/elipse-e3-power-section-report-e3sectionreport\/","title":{"rendered":"Elipse E3\/Power Section Report (E3SectionReport)."},"content":{"rendered":"<p style=\"text-align: justify;\">As of the release date of<strong>\u00a0<a href=\"https:\/\/www.elipse.com.br\/produto\/elipse-e3\/\">Elipse E3<\/a>\/<a href=\"https:\/\/www.elipse.com.br\/produto\/elipse-power\/\">Power <\/a>version 6.6,<\/strong> a new object called Elipse E3\/Power Section Report (<strong>E3SectionReport<\/strong>) was added to <a href=\"https:\/\/kb.elipse.com.br\/en\/category\/english\/elipse-e3-en\/studio-2\/\" target=\"_blank\" rel=\"noopener\"><strong>Elipse E3 Studio<\/strong><\/a>. It&#8217;s available both in 64- and 32-bit versions of Elipse E3.<\/p>\n<p style=\"text-align: justify;\">In this article, we&#8217;ll present the new tool, and then its basic configuration features.<\/p>\n<p>&nbsp;<\/p>\n<h2><strong>1. E3ApplicationLink<\/strong><\/h2>\n<p style=\"text-align: justify;\">With this object, you can access values of Tags, Screens, and Viewer object directly via scripts, since you can&#8217;t use expressions in Labels\/TextBox properties.<\/p>\n<p style=\"text-align: justify;\">In order to use this object in a Section Report script, you must also create an instance to work as an interface between the Section Report and Elipse E3, as seen below.<\/p>\n<p>&nbsp;<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">Sub ActiveReport_ReportStart\r\ndim Application = Activator.CreateInstance(Type.GetTypeFromProgID(\"Reports.E3ApplicationLink\"))\r\nApplication.LinkWithApplication(rpt)\r\nEnd Sub<\/pre>\n<p>When adding a <strong>Section Report<\/strong>, the script adds automatically:<\/p>\n<p>&nbsp;<\/p>\n<p><img loading=\"lazy\" class=\"aligncenter wp-image-15475 size-full\" src=\"https:\/\/kb.elipse.com.br\/wp-content\/uploads\/2024\/01\/1_15430.png\" alt=\"\" width=\"827\" height=\"199\" srcset=\"https:\/\/kb.elipse.com.br\/wp-content\/uploads\/2024\/01\/1_15430.png 827w, https:\/\/kb.elipse.com.br\/wp-content\/uploads\/2024\/01\/1_15430-300x72.png 300w, https:\/\/kb.elipse.com.br\/wp-content\/uploads\/2024\/01\/1_15430-768x185.png 768w\" sizes=\"(max-width: 827px) 100vw, 827px\" \/><\/p>\n<p style=\"text-align: justify;\">The object E3ApplicationLink is only available in Section Report&#8217;s scripts, since it uses <em><a href=\"https:\/\/learn.microsoft.com\/pt-br\/dotnet\/visual-basic\/\">Visual Basic .NET<\/a><\/em> programming language.<\/p>\n<p>&nbsp;<\/p>\n<h3>1.1 E3Application Link methods<\/h3>\n<p style=\"text-align: justify;\">Therefore, the methods available in object E3ApplicationLink are:<\/p>\n<ul>\n<li style=\"text-align: justify;\"><strong>GetScreenValue(<em>Path<\/em>, [<em>Frame<\/em>], [<em>Property<\/em>])<\/strong><strong>:<\/strong> This method only works at run time in <strong>Elipse E3 Viewer<\/strong>, and its function is to return the value of a property in a Screen or Frame. <em><strong>Path <\/strong><\/em>parameter is mandatory, and indicates the path to an object from a Screen or Frame. This parameter can be an empty string, and therefore it indicates the path to a Screen or Frame. <em><strong>Frame <\/strong><\/em>parameter is optional, and thus it indicates where the Frame or Screen is. When omitting this parameter, be sure to use\u00a0 <strong>_top <\/strong>Frame.\u00a0 <em><strong>Property <\/strong><\/em>parameter indicates the name of the property to return. By omitting this parameter, the value of\u00a0 <strong>Value <\/strong>property will return.<\/li>\n<\/ul>\n<p style=\"text-align: justify;\">Example:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">dim Application = Activator.CreateInstance(Type.GetTypeFromProgID(\"Reports.E3ApplicationLink\"))\r\nApplication.LinkWithApplication(rpt)\r\n\r\nMe.Label1.Text = Application.GetScreenValue(\"Pasta1.TagInterno1\", \"Inferior\")<\/pre>\n<p style=\"text-align: justify;\"><strong>NOTE: <\/strong>By using <strong>&#8220;Me.&#8221;<\/strong>, you will have direct access to all objects and sections in the report with the autocomplete feature.<\/p>\n<p>&nbsp;<\/p>\n<ul>\n<li style=\"text-align: justify;\"><strong>GetServerValue(Path, [Property]):<\/strong> This method works both in E3 Studio and at run time, and its function is to return a server object&#8217;s property value. <em><strong>Path<\/strong> <\/em>parameter is mandatory, and indicates an object&#8217;s path in the server. <em><strong>Property <\/strong><\/em>parameter indicates the name of the property to return. By omitting this parameter, the value of\u00a0 <strong>Value <\/strong>property will return.<\/li>\n<\/ul>\n<p style=\"text-align: justify;\">Example:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">dim Application = Activator.CreateInstance(Type.GetTypeFromProgID(\"Reports.E3ApplicationLink\"))\r\nApplication.LinkWithApplication(rpt)\r\n\r\nMe.Label2.Text = Application.GetServerValue(\"Dados.TagInterno1\") \r\nMe.Label3.Text = Application.GetServerValue(\"Dados.TagInterno1\", \"Timestamp\")\r\n<\/pre>\n<ul>\n<li style=\"text-align: justify;\"><strong>GetViewerValue(Path, [Property]):<\/strong> This method works only at run time in Elipse E3 Viewer, and its function is to return the value of a property of Viewer object or of one of its children. <strong><em>Path<\/em> <\/strong>parameter is mandatory, and it indicates the path to a Viewer&#8217;s child object. This parameter can be an empty string, and therefore it indicates a Viewer object&#8217;s property return. <em><strong>Property <\/strong><\/em>parameter indicates the name of the property to return. By omitting this parameter, the value of\u00a0 <strong>Value <\/strong>property will return.<\/li>\n<\/ul>\n<p style=\"text-align: justify;\">Example:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">dim Application = Activator.CreateInstance(Type.GetTypeFromProgID(\"Reports.E3ApplicationLink\"))\r\nApplication.LinkWithApplication(rpt)\r\n\r\nMe.Label2.Text = Application.GetViewerValue(\"\", \"Caption\")\r\nMe.Label3.Text = Application.GetViewerValue(\"Pasta1.TagInterno1\")<\/pre>\n<p><strong>NOTE:<\/strong> Since Viewer object has no\u00a0 <strong>Value <\/strong>property, it&#8217;s not possible to use this method with <em><strong>Path<\/strong><\/em> parameter as an empty string and omit Property parameter.<\/p>\n<p>&nbsp;<\/p>\n<h2><strong>2. E3Chart object<\/strong><\/h2>\n<p style=\"text-align: justify;\">To add a Chart object, just click the E3Chart button; thus, you will automatically add a Chart to the report&#8217;s Detail section:<\/p>\n<p><img loading=\"lazy\" class=\"aligncenter wp-image-15476 size-full\" src=\"https:\/\/kb.elipse.com.br\/wp-content\/uploads\/2024\/01\/2_15430.png\" alt=\"\" width=\"624\" height=\"327\" srcset=\"https:\/\/kb.elipse.com.br\/wp-content\/uploads\/2024\/01\/2_15430.png 624w, https:\/\/kb.elipse.com.br\/wp-content\/uploads\/2024\/01\/2_15430-300x157.png 300w\" sizes=\"(max-width: 624px) 100vw, 624px\" \/><\/p>\n<p style=\"text-align: justify;\">You can then resize the Chart, or even drag it to other sections.<\/p>\n<p style=\"text-align: justify;\">In the Organizer, the Chart displays as a Report&#8217;s child object, and it can be configured there, via <em>Properties<\/em> menu:<\/p>\n<p><img loading=\"lazy\" class=\"aligncenter wp-image-15477 size-full\" src=\"https:\/\/kb.elipse.com.br\/wp-content\/uploads\/2024\/01\/3_15430.png\" alt=\"\" width=\"903\" height=\"629\" srcset=\"https:\/\/kb.elipse.com.br\/wp-content\/uploads\/2024\/01\/3_15430.png 903w, https:\/\/kb.elipse.com.br\/wp-content\/uploads\/2024\/01\/3_15430-300x209.png 300w, https:\/\/kb.elipse.com.br\/wp-content\/uploads\/2024\/01\/3_15430-768x535.png 768w\" sizes=\"(max-width: 903px) 100vw, 903px\" \/><\/p>\n<p style=\"text-align: justify;\">Likewise, it&#8217;s possible to copy an E3Chart from a <strong>screen<\/strong> onto the <strong>Section Report.<\/strong> This procedure takes place in the Organizer, and then the Query must be copied separately.<\/p>\n<p><strong>\u00a0<\/strong><\/p>\n<h2><strong>3. Printing a copy of E3Chart from screen in a Report<\/strong><\/h2>\n<p style=\"text-align: justify;\">In order to copy an E3Chart from a screen to a Section Report, use <strong>CopyConfig(SourceChart)<\/strong> command directly in a script on screen. Example:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">Sub CommandButton1_Click()\r\nSet Report = Application.LoadReport(\"RelatorioSecao1\")\r\nSet Chart = Report.Item(\"E3Chart1\")\t\r\nSet ScreenChart = Screen.Item(\"E3Chart1\")\r\nChart.CopyConfig(ScreenChart)\r\nReport.PrintPreview\r\nEnd Sub\r\n<\/pre>\n<p style=\"text-align: justify;\">This method copies all configurations from one E3Chart to another. <strong><em>SourceChart <\/em><\/strong>parameter indicates the source E3Chart, whose properties are copied to the E3Chart that is calling the method. Notice that this method only works with <strong>Historic<\/strong> pens.<\/p>\n<p>&nbsp;<\/p>\n<h2><strong>4. Exporting and importing Reports (RPX file)<\/strong><\/h2>\n<p style=\"text-align: justify;\">It&#8217;s possible to export and import a Report&#8217;s configurations to an external file. Both Reports and Section Reports can load files in RPX format. However, non-existing or incompatible resources (charts, scripts) in other types of Reports are discarded when loading to a new Report. The object Query can be copied from a Report to a Section Report.<\/p>\n<p><img loading=\"lazy\" class=\"aligncenter size-full wp-image-15478\" src=\"https:\/\/kb.elipse.com.br\/wp-content\/uploads\/2024\/01\/4_15430.png\" alt=\"\" width=\"161\" height=\"86\" \/><\/p>\n<p style=\"text-align: justify;\">For further information, check the item <a href=\"https:\/\/docs.elipse.com.br\/documents\/en-us\/e3\/latest\/manual\/script\/\" target=\"_blank\" rel=\"noopener\">Section Report<\/a> from Elipse E3 Reference and Scripts Manual.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>As of the release date of\u00a0Elipse E3\/Power version 6.6, a new object called Elipse E3\/Power Section Report (E3SectionReport) was added to Elipse E3 Studio. It&#8217;s available both in 64- and&hellip;<\/p>\n","protected":false},"author":3,"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":[1220],"tags":[1227],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v19.8 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Elipse E3\/Power Section Report (E3SectionReport).<\/title>\n<meta name=\"description\" content=\"Object Section Report (E3SectionReport) was added to\u00a0Elipse E3\/Power version 6.6 (32- and 64-bit versions).\" \/>\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\/elipse-e3-power-section-report-e3sectionreport\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Elipse E3\/Power Section Report (E3SectionReport).\" \/>\n<meta property=\"og:description\" content=\"Object Section Report (E3SectionReport) was added to\u00a0Elipse E3\/Power version 6.6 (32- and 64-bit versions).\" \/>\n<meta property=\"og:url\" content=\"https:\/\/kb.elipse.com.br\/en\/elipse-e3-power-section-report-e3sectionreport\/\" \/>\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=\"2024-02-09T16:43:50+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-04-08T18:02:50+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/kb.elipse.com.br\/wp-content\/uploads\/2024\/01\/1_15430.png\" \/>\n<meta name=\"author\" content=\"D\u00e9lio Damin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"D\u00e9lio Damin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 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\/elipse-e3-power-section-report-e3sectionreport\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/kb.elipse.com.br\/en\/elipse-e3-power-section-report-e3sectionreport\/\"},\"author\":{\"name\":\"D\u00e9lio Damin\",\"@id\":\"https:\/\/kb.elipse.com.br\/#\/schema\/person\/be597eff34b5f24af940a55332870778\"},\"headline\":\"Elipse E3\/Power Section Report (E3SectionReport).\",\"datePublished\":\"2024-02-09T16:43:50+00:00\",\"dateModified\":\"2024-04-08T18:02:50+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/kb.elipse.com.br\/en\/elipse-e3-power-section-report-e3sectionreport\/\"},\"wordCount\":717,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/kb.elipse.com.br\/#organization\"},\"keywords\":[\"en\"],\"articleSection\":[\"Section Report\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/kb.elipse.com.br\/en\/elipse-e3-power-section-report-e3sectionreport\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/kb.elipse.com.br\/en\/elipse-e3-power-section-report-e3sectionreport\/\",\"url\":\"https:\/\/kb.elipse.com.br\/en\/elipse-e3-power-section-report-e3sectionreport\/\",\"name\":\"Elipse E3\/Power Section Report (E3SectionReport).\",\"isPartOf\":{\"@id\":\"https:\/\/kb.elipse.com.br\/#website\"},\"datePublished\":\"2024-02-09T16:43:50+00:00\",\"dateModified\":\"2024-04-08T18:02:50+00:00\",\"description\":\"Object Section Report (E3SectionReport) was added to\u00a0Elipse E3\/Power version 6.6 (32- and 64-bit versions).\",\"breadcrumb\":{\"@id\":\"https:\/\/kb.elipse.com.br\/en\/elipse-e3-power-section-report-e3sectionreport\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/kb.elipse.com.br\/en\/elipse-e3-power-section-report-e3sectionreport\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/kb.elipse.com.br\/en\/elipse-e3-power-section-report-e3sectionreport\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"In\u00edcio\",\"item\":\"https:\/\/kb.elipse.com.br\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Elipse E3\/Power Section Report (E3SectionReport).\"}]},{\"@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\/be597eff34b5f24af940a55332870778\",\"name\":\"D\u00e9lio Damin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/kb.elipse.com.br\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/fdf251d36430f8dd22144c3f1bc53376?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/fdf251d36430f8dd22144c3f1bc53376?s=96&d=mm&r=g\",\"caption\":\"D\u00e9lio Damin\"},\"url\":\"https:\/\/kb.elipse.com.br\/en\/author\/delio\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Elipse E3\/Power Section Report (E3SectionReport).","description":"Object Section Report (E3SectionReport) was added to\u00a0Elipse E3\/Power version 6.6 (32- and 64-bit versions).","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\/elipse-e3-power-section-report-e3sectionreport\/","og_locale":"en_US","og_type":"article","og_title":"Elipse E3\/Power Section Report (E3SectionReport).","og_description":"Object Section Report (E3SectionReport) was added to\u00a0Elipse E3\/Power version 6.6 (32- and 64-bit versions).","og_url":"https:\/\/kb.elipse.com.br\/en\/elipse-e3-power-section-report-e3sectionreport\/","og_site_name":"Elipse Knowledgebase","article_publisher":"http:\/\/www.facebook.com\/elipsesoftware","article_published_time":"2024-02-09T16:43:50+00:00","article_modified_time":"2024-04-08T18:02:50+00:00","og_image":[{"url":"https:\/\/kb.elipse.com.br\/wp-content\/uploads\/2024\/01\/1_15430.png"}],"author":"D\u00e9lio Damin","twitter_card":"summary_large_image","twitter_misc":{"Written by":"D\u00e9lio Damin","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/kb.elipse.com.br\/en\/elipse-e3-power-section-report-e3sectionreport\/#article","isPartOf":{"@id":"https:\/\/kb.elipse.com.br\/en\/elipse-e3-power-section-report-e3sectionreport\/"},"author":{"name":"D\u00e9lio Damin","@id":"https:\/\/kb.elipse.com.br\/#\/schema\/person\/be597eff34b5f24af940a55332870778"},"headline":"Elipse E3\/Power Section Report (E3SectionReport).","datePublished":"2024-02-09T16:43:50+00:00","dateModified":"2024-04-08T18:02:50+00:00","mainEntityOfPage":{"@id":"https:\/\/kb.elipse.com.br\/en\/elipse-e3-power-section-report-e3sectionreport\/"},"wordCount":717,"commentCount":0,"publisher":{"@id":"https:\/\/kb.elipse.com.br\/#organization"},"keywords":["en"],"articleSection":["Section Report"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/kb.elipse.com.br\/en\/elipse-e3-power-section-report-e3sectionreport\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/kb.elipse.com.br\/en\/elipse-e3-power-section-report-e3sectionreport\/","url":"https:\/\/kb.elipse.com.br\/en\/elipse-e3-power-section-report-e3sectionreport\/","name":"Elipse E3\/Power Section Report (E3SectionReport).","isPartOf":{"@id":"https:\/\/kb.elipse.com.br\/#website"},"datePublished":"2024-02-09T16:43:50+00:00","dateModified":"2024-04-08T18:02:50+00:00","description":"Object Section Report (E3SectionReport) was added to\u00a0Elipse E3\/Power version 6.6 (32- and 64-bit versions).","breadcrumb":{"@id":"https:\/\/kb.elipse.com.br\/en\/elipse-e3-power-section-report-e3sectionreport\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/kb.elipse.com.br\/en\/elipse-e3-power-section-report-e3sectionreport\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/kb.elipse.com.br\/en\/elipse-e3-power-section-report-e3sectionreport\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"In\u00edcio","item":"https:\/\/kb.elipse.com.br\/en\/"},{"@type":"ListItem","position":2,"name":"Elipse E3\/Power Section Report (E3SectionReport)."}]},{"@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\/be597eff34b5f24af940a55332870778","name":"D\u00e9lio Damin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/kb.elipse.com.br\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/fdf251d36430f8dd22144c3f1bc53376?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/fdf251d36430f8dd22144c3f1bc53376?s=96&d=mm&r=g","caption":"D\u00e9lio Damin"},"url":"https:\/\/kb.elipse.com.br\/en\/author\/delio\/"}]}},"_links":{"self":[{"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/posts\/15516"}],"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\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/comments?post=15516"}],"version-history":[{"count":13,"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/posts\/15516\/revisions"}],"predecessor-version":[{"id":15948,"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/posts\/15516\/revisions\/15948"}],"wp:attachment":[{"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/media?parent=15516"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/categories?post=15516"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/tags?post=15516"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}