{"id":46,"date":"2007-08-28T16:36:00","date_gmt":"2007-08-28T16:36:00","guid":{"rendered":"http:\/\/www.webmundi.com\/?p=46"},"modified":"2025-03-20T16:44:35","modified_gmt":"2025-03-20T19:44:35","slug":"limitar-movimento-mouse-delphi","status":"publish","type":"post","link":"http:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/limitar-movimento-mouse-delphi\/","title":{"rendered":"Como Limitar a Regi\u00e3o de Movimenta\u00e7\u00e3o do Mouse no Delphi"},"content":{"rendered":"

No Delphi, \u00e9 poss\u00edvel restringir o movimento do mouse para uma \u00e1rea espec\u00edfica dentro do formul\u00e1rio. Para isso, utilizamos a fun\u00e7\u00e3o ClipCursor<\/strong>, que define uma regi\u00e3o de movimenta\u00e7\u00e3o limitada.<\/p>

Este tutorial explica como aplicar essa restri\u00e7\u00e3o e restaurar a movimenta\u00e7\u00e3o normal do cursor.<\/p>

Passo a Passo<\/h2>

1. Adicione a Biblioteca Necess\u00e1ria<\/h3>

No in\u00edcio do seu c\u00f3digo, inclua a cl\u00e1usula Windows<\/strong> na se\u00e7\u00e3o uses<\/code>:<\/p>

uses\n  Windows, Forms, Controls, Dialogs;\n<\/code><\/pre>

2. Crie um Bot\u00e3o no Formul\u00e1rio<\/h3>

Adicione um bot\u00e3o ao seu formul\u00e1rio e implemente o evento OnClick<\/strong> com o seguinte c\u00f3digo:<\/p>

procedure TForm1.Button1Click(Sender: TObject);\nvar\n  R: TRect;\nbegin\n  { Obt\u00e9m o ret\u00e2ngulo da \u00e1rea cliente do formul\u00e1rio }\n  R := GetClientRect;\n\n  { Converte as coordenadas do formul\u00e1rio para coordenadas da tela }\n  R.TopLeft := ClientToScreen(R.TopLeft);\n  R.BottomRight := ClientToScreen(R.BottomRight);\n\n  { Limita a movimenta\u00e7\u00e3o do cursor \u00e0 \u00e1rea do formul\u00e1rio }\n  ClipCursor(@R);\n\n  { Exibe uma mensagem explicativa }\n  ShowMessage('Tente mover o mouse para fora da \u00e1rea cliente do formul\u00e1rio.');\n\n  { Libera a movimenta\u00e7\u00e3o do cursor ap\u00f3s fechar a mensagem }\n  ClipCursor(nil);\nend;\n<\/code><\/pre>

Explica\u00e7\u00e3o do C\u00f3digo<\/h2>
  • GetClientRect<\/code> captura as dimens\u00f5es da \u00e1rea cliente do formul\u00e1rio.<\/li>\n\n
  • ClientToScreen<\/code> converte as coordenadas para valores da tela.<\/li>\n\n
  • ClipCursor(@R)<\/code> limita o movimento do mouse \u00e0 \u00e1rea definida.<\/li>\n\n
  • ShowMessage<\/code> exibe um aviso ao usu\u00e1rio.<\/li>\n\n
  • ClipCursor(nil)<\/code> libera a movimenta\u00e7\u00e3o ap\u00f3s a confirma\u00e7\u00e3o da mensagem.<\/li><\/ul>

    Considera\u00e7\u00f5es<\/h2>

    Uso pr\u00e1tico<\/strong>: Esse m\u00e9todo pode ser \u00fatil para restringir intera\u00e7\u00f5es em certas \u00e1reas de uma aplica\u00e7\u00e3o.
    Restaurando o controle<\/strong>: Se necess\u00e1rio, chame ClipCursor(nil)<\/code> para liberar o mouse manualmente.<\/p>

    Conclus\u00e3o<\/h2>

    Com poucas linhas de c\u00f3digo, conseguimos controlar a movimenta\u00e7\u00e3o do cursor dentro de uma aplica\u00e7\u00e3o Delphi. Esse recurso pode ser \u00fatil em sistemas que exigem restri\u00e7\u00e3o tempor\u00e1ria do cursor para melhorar a experi\u00eancia do usu\u00e1rio.<\/p>

    <\/p>","protected":false},"excerpt":{"rendered":"

    No Delphi, \u00e9 poss\u00edvel restringir o movimento do mouse para uma \u00e1rea espec\u00edfica dentro do formul\u00e1rio. Para isso, utilizamos a…<\/p>\n","protected":false},"author":2,"featured_media":41868,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_kadence_starter_templates_imported_post":false,"_kad_post_transparent":"","_kad_post_title":"","_kad_post_layout":"","_kad_post_sidebar_id":"","_kad_post_content_style":"","_kad_post_vertical_padding":"","_kad_post_feature":"","_kad_post_feature_position":"","_kad_post_header":false,"_kad_post_footer":false,"footnotes":""},"categories":[9,13],"tags":[27,28,14],"class_list":["post-46","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-delphi","category-desenvolvimento-de-sistemas","tag-delphi","tag-desenvolvimento-de-sistemas","tag-programacao"],"yoast_head":"\nLimitando a regi\u00e3o de movimenta\u00e7\u00e3o do mouse<\/title>\n<meta name=\"description\" content=\"Aprenda a restringir o movimento do cursor no Delphi utilizando ClipCursor. Tutorial pr\u00e1tico com c\u00f3digo comentado.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/limitar-movimento-mouse-delphi\/\" \/>\n<meta property=\"og:locale\" content=\"pt_BR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Limitando a regi\u00e3o de movimenta\u00e7\u00e3o do mouse\" \/>\n<meta property=\"og:description\" content=\"Aprenda a restringir o movimento do cursor no Delphi utilizando ClipCursor. Tutorial pr\u00e1tico com c\u00f3digo comentado.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/limitar-movimento-mouse-delphi\/\" \/>\n<meta property=\"og:site_name\" content=\"WebMundi.com\" \/>\n<meta property=\"article:publisher\" content=\"http:\/\/www.facebook.com\/webmundi.net\" \/>\n<meta property=\"article:author\" content=\"http:\/\/www.facebook.com\/webmundi.net\" \/>\n<meta property=\"article:published_time\" content=\"2007-08-28T16:36:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-03-20T19:44:35+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/localhost\/cmswebmundicom\/wp-content\/uploads\/dicas-de-delphi.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1920\" \/>\n\t<meta property=\"og:image:height\" content=\"1080\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Renato Sanches\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@http:\/\/twitter.com\/webmundi_com\" \/>\n<meta name=\"twitter:site\" content=\"@webmundi_com\" \/>\n<meta name=\"twitter:label1\" content=\"Escrito por\" \/>\n\t<meta name=\"twitter:data1\" content=\"Renato Sanches\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. tempo de leitura\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutos\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\n\t \"@context\": \"https:\/\/schema.org\",\n\t \"@graph\": [\n\t {\n\t \"@type\": \"Article\",\n\t \"@id\": \"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/limitar-movimento-mouse-delphi\/#article\",\n\t \"isPartOf\": {\n\t \"@id\": \"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/limitar-movimento-mouse-delphi\/\"\n\t },\n\t \"author\": {\n\t \"name\": \"Renato Sanches\",\n\t \"@id\": \"https:\/\/localhost\/cmswebmundicom\/#\/schema\/person\/2deb7f80cdeae68e2602c4702be722a0\"\n\t },\n\t \"headline\": \"Como Limitar a Regi\u00e3o de Movimenta\u00e7\u00e3o do Mouse no Delphi\",\n\t \"datePublished\": \"2007-08-28T16:36:00+00:00\",\n\t \"dateModified\": \"2025-03-20T19:44:35+00:00\",\n\t \"mainEntityOfPage\": {\n\t \"@id\": \"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/limitar-movimento-mouse-delphi\/\"\n\t },\n\t \"wordCount\": 236,\n\t \"commentCount\": 0,\n\t \"publisher\": {\n\t \"@id\": \"https:\/\/localhost\/cmswebmundicom\/#organization\"\n\t },\n\t \"image\": {\n\t \"@id\": \"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/limitar-movimento-mouse-delphi\/#primaryimage\"\n\t },\n\t \"thumbnailUrl\": \"http:\/\/localhost\/cmswebmundicom\/wp-content\/uploads\/dicas-de-delphi.jpg\",\n\t \"keywords\": [\n\t \"Delphi\",\n\t \"Desenvolvimento de sistemas\",\n\t \"Programa\u00e7\u00e3o\"\n\t ],\n\t \"articleSection\": [\n\t \"Delphi\",\n\t \"Desenvolvimento de Software\"\n\t ],\n\t \"inLanguage\": \"pt-BR\",\n\t \"potentialAction\": [\n\t {\n\t \"@type\": \"CommentAction\",\n\t \"name\": \"Comment\",\n\t \"target\": [\n\t \"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/limitar-movimento-mouse-delphi\/#respond\"\n\t ]\n\t }\n\t ]\n\t },\n\t {\n\t \"@type\": \"WebPage\",\n\t \"@id\": \"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/limitar-movimento-mouse-delphi\/\",\n\t \"url\": \"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/limitar-movimento-mouse-delphi\/\",\n\t \"name\": \"Limitando a regi\u00e3o de movimenta\u00e7\u00e3o do mouse\",\n\t \"isPartOf\": {\n\t \"@id\": \"https:\/\/localhost\/cmswebmundicom\/#website\"\n\t },\n\t \"primaryImageOfPage\": {\n\t \"@id\": \"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/limitar-movimento-mouse-delphi\/#primaryimage\"\n\t },\n\t \"image\": {\n\t \"@id\": \"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/limitar-movimento-mouse-delphi\/#primaryimage\"\n\t },\n\t \"thumbnailUrl\": \"http:\/\/localhost\/cmswebmundicom\/wp-content\/uploads\/dicas-de-delphi.jpg\",\n\t \"datePublished\": \"2007-08-28T16:36:00+00:00\",\n\t \"dateModified\": \"2025-03-20T19:44:35+00:00\",\n\t \"description\": \"Aprenda a restringir o movimento do cursor no Delphi utilizando ClipCursor. Tutorial pr\u00e1tico com c\u00f3digo comentado.\",\n\t \"breadcrumb\": {\n\t \"@id\": \"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/limitar-movimento-mouse-delphi\/#breadcrumb\"\n\t },\n\t \"inLanguage\": \"pt-BR\",\n\t \"potentialAction\": [\n\t {\n\t \"@type\": \"ReadAction\",\n\t \"target\": [\n\t \"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/limitar-movimento-mouse-delphi\/\"\n\t ]\n\t }\n\t ]\n\t },\n\t {\n\t \"@type\": \"ImageObject\",\n\t \"inLanguage\": \"pt-BR\",\n\t \"@id\": \"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/limitar-movimento-mouse-delphi\/#primaryimage\",\n\t \"url\": \"http:\/\/localhost\/cmswebmundicom\/wp-content\/uploads\/dicas-de-delphi.jpg\",\n\t \"contentUrl\": \"http:\/\/localhost\/cmswebmundicom\/wp-content\/uploads\/dicas-de-delphi.jpg\",\n\t \"width\": 1920,\n\t \"height\": 1080,\n\t \"caption\": \"Dicas de Delphi - Desenvolvimento de Software\"\n\t },\n\t {\n\t \"@type\": \"BreadcrumbList\",\n\t \"@id\": \"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/limitar-movimento-mouse-delphi\/#breadcrumb\",\n\t \"itemListElement\": [\n\t {\n\t \"@type\": \"ListItem\",\n\t \"position\": 1,\n\t \"name\": \"Home\",\n\t \"item\": \"http:\/\/localhost\/cmswebmundicom\/\"\n\t },\n\t {\n\t \"@type\": \"ListItem\",\n\t \"position\": 2,\n\t \"name\": \"Desenvolvimento de Software\",\n\t \"item\": \"https:\/\/localhost\/cmswebmundicom\/categorias\/desenvolvimento-de-sistemas\/\"\n\t },\n\t {\n\t \"@type\": \"ListItem\",\n\t \"position\": 3,\n\t \"name\": \"Como Limitar a Regi\u00e3o de Movimenta\u00e7\u00e3o do Mouse no Delphi\"\n\t }\n\t ]\n\t },\n\t {\n\t \"@type\": \"WebSite\",\n\t \"@id\": \"https:\/\/localhost\/cmswebmundicom\/#website\",\n\t \"url\": \"https:\/\/localhost\/cmswebmundicom\/\",\n\t \"name\": \"WebMundi.com\",\n\t \"description\": \"Site e Canal YouTube com Dicas e Tutoriais sobre Tecnologia\",\n\t \"publisher\": {\n\t \"@id\": \"https:\/\/localhost\/cmswebmundicom\/#organization\"\n\t },\n\t \"potentialAction\": [\n\t {\n\t \"@type\": \"SearchAction\",\n\t \"target\": {\n\t \"@type\": \"EntryPoint\",\n\t \"urlTemplate\": \"https:\/\/localhost\/cmswebmundicom\/?s={search_term_string}\"\n\t },\n\t \"query-input\": {\n\t \"@type\": \"PropertyValueSpecification\",\n\t \"valueRequired\": true,\n\t \"valueName\": \"search_term_string\"\n\t }\n\t }\n\t ],\n\t \"inLanguage\": \"pt-BR\"\n\t },\n\t {\n\t \"@type\": \"Organization\",\n\t \"@id\": \"https:\/\/localhost\/cmswebmundicom\/#organization\",\n\t \"name\": \"Web Mundi : Tecnologia\",\n\t \"url\": \"https:\/\/localhost\/cmswebmundicom\/\",\n\t \"logo\": {\n\t \"@type\": \"ImageObject\",\n\t \"inLanguage\": \"pt-BR\",\n\t \"@id\": \"https:\/\/localhost\/cmswebmundicom\/#\/schema\/logo\/image\/\",\n\t \"url\": \"https:\/\/localhost\/cmswebmundicom\/wp-content\/uploads\/logo-web-mundi-com-preto-fundo-transparente.jpg\",\n\t \"contentUrl\": \"https:\/\/localhost\/cmswebmundicom\/wp-content\/uploads\/logo-web-mundi-com-preto-fundo-transparente.jpg\",\n\t \"width\": 295,\n\t \"height\": 73,\n\t \"caption\": \"Web Mundi : Tecnologia\"\n\t },\n\t \"image\": {\n\t \"@id\": \"https:\/\/localhost\/cmswebmundicom\/#\/schema\/logo\/image\/\"\n\t },\n\t \"sameAs\": [\n\t \"http:\/\/www.facebook.com\/webmundi.net\",\n\t \"https:\/\/x.com\/webmundi_com\",\n\t \"https:\/\/www.instagram.com\/webmundi\/\",\n\t \"http:\/\/www.pinterest.com\/webmundi\",\n\t \"https:\/\/www.youtube.com\/channel\/UCqqJsllgIjDZjLE74Bba9og\"\n\t ]\n\t },\n\t {\n\t \"@type\": \"Person\",\n\t \"@id\": \"https:\/\/localhost\/cmswebmundicom\/#\/schema\/person\/2deb7f80cdeae68e2602c4702be722a0\",\n\t \"name\": \"Renato Sanches\",\n\t \"description\": \"Executivo Tecnologia da Informa\u00e7\u00e3o | Gerente | Projetos | Infraestrutura | Sistemas | Desenvolvimento | Banco de Dados | Fundador Web Mundi | Propriet\u00e1rio XP IT Tecnologia\",\n\t \"sameAs\": [\n\t \"http:\/\/www.webmundi.com\/\",\n\t \"http:\/\/www.facebook.com\/webmundi.net\",\n\t \"https:\/\/www.instagram.com\/webmundi\/\",\n\t \"https:\/\/www.linkedin.com\/company\/webmundi\/\",\n\t \"http:\/\/www.pinterest.com\/webmundi\",\n\t \"https:\/\/x.com\/http:\/\/twitter.com\/webmundi_com\",\n\t \"https:\/\/www.youtube.com\/channel\/UCqqJsllgIjDZjLE74Bba9og\",\n\t \"http:\/\/webmundi.tumblr.com\/\"\n\t ]\n\t }\n\t ]\n\t}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Limitando a regi\u00e3o de movimenta\u00e7\u00e3o do mouse","description":"Aprenda a restringir o movimento do cursor no Delphi utilizando ClipCursor. Tutorial pr\u00e1tico com c\u00f3digo comentado.","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:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/limitar-movimento-mouse-delphi\/","og_locale":"pt_BR","og_type":"article","og_title":"Limitando a regi\u00e3o de movimenta\u00e7\u00e3o do mouse","og_description":"Aprenda a restringir o movimento do cursor no Delphi utilizando ClipCursor. Tutorial pr\u00e1tico com c\u00f3digo comentado.","og_url":"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/limitar-movimento-mouse-delphi\/","og_site_name":"WebMundi.com","article_publisher":"http:\/\/www.facebook.com\/webmundi.net","article_author":"http:\/\/www.facebook.com\/webmundi.net","article_published_time":"2007-08-28T16:36:00+00:00","article_modified_time":"2025-03-20T19:44:35+00:00","og_image":[{"width":1920,"height":1080,"url":"https:\/\/localhost\/cmswebmundicom\/wp-content\/uploads\/dicas-de-delphi.jpg","type":"image\/jpeg"}],"author":"Renato Sanches","twitter_card":"summary_large_image","twitter_creator":"@http:\/\/twitter.com\/webmundi_com","twitter_site":"@webmundi_com","twitter_misc":{"Escrito por":"Renato Sanches","Est. tempo de leitura":"2 minutos"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/limitar-movimento-mouse-delphi\/#article","isPartOf":{"@id":"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/limitar-movimento-mouse-delphi\/"},"author":{"name":"Renato Sanches","@id":"https:\/\/localhost\/cmswebmundicom\/#\/schema\/person\/2deb7f80cdeae68e2602c4702be722a0"},"headline":"Como Limitar a Regi\u00e3o de Movimenta\u00e7\u00e3o do Mouse no Delphi","datePublished":"2007-08-28T16:36:00+00:00","dateModified":"2025-03-20T19:44:35+00:00","mainEntityOfPage":{"@id":"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/limitar-movimento-mouse-delphi\/"},"wordCount":236,"commentCount":0,"publisher":{"@id":"https:\/\/localhost\/cmswebmundicom\/#organization"},"image":{"@id":"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/limitar-movimento-mouse-delphi\/#primaryimage"},"thumbnailUrl":"http:\/\/localhost\/cmswebmundicom\/wp-content\/uploads\/dicas-de-delphi.jpg","keywords":["Delphi","Desenvolvimento de sistemas","Programa\u00e7\u00e3o"],"articleSection":["Delphi","Desenvolvimento de Software"],"inLanguage":"pt-BR","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/limitar-movimento-mouse-delphi\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/limitar-movimento-mouse-delphi\/","url":"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/limitar-movimento-mouse-delphi\/","name":"Limitando a regi\u00e3o de movimenta\u00e7\u00e3o do mouse","isPartOf":{"@id":"https:\/\/localhost\/cmswebmundicom\/#website"},"primaryImageOfPage":{"@id":"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/limitar-movimento-mouse-delphi\/#primaryimage"},"image":{"@id":"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/limitar-movimento-mouse-delphi\/#primaryimage"},"thumbnailUrl":"http:\/\/localhost\/cmswebmundicom\/wp-content\/uploads\/dicas-de-delphi.jpg","datePublished":"2007-08-28T16:36:00+00:00","dateModified":"2025-03-20T19:44:35+00:00","description":"Aprenda a restringir o movimento do cursor no Delphi utilizando ClipCursor. Tutorial pr\u00e1tico com c\u00f3digo comentado.","breadcrumb":{"@id":"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/limitar-movimento-mouse-delphi\/#breadcrumb"},"inLanguage":"pt-BR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/limitar-movimento-mouse-delphi\/"]}]},{"@type":"ImageObject","inLanguage":"pt-BR","@id":"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/limitar-movimento-mouse-delphi\/#primaryimage","url":"http:\/\/localhost\/cmswebmundicom\/wp-content\/uploads\/dicas-de-delphi.jpg","contentUrl":"http:\/\/localhost\/cmswebmundicom\/wp-content\/uploads\/dicas-de-delphi.jpg","width":1920,"height":1080,"caption":"Dicas de Delphi - Desenvolvimento de Software"},{"@type":"BreadcrumbList","@id":"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/limitar-movimento-mouse-delphi\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"http:\/\/localhost\/cmswebmundicom\/"},{"@type":"ListItem","position":2,"name":"Desenvolvimento de Software","item":"https:\/\/localhost\/cmswebmundicom\/categorias\/desenvolvimento-de-sistemas\/"},{"@type":"ListItem","position":3,"name":"Como Limitar a Regi\u00e3o de Movimenta\u00e7\u00e3o do Mouse no Delphi"}]},{"@type":"WebSite","@id":"https:\/\/localhost\/cmswebmundicom\/#website","url":"https:\/\/localhost\/cmswebmundicom\/","name":"WebMundi.com","description":"Site e Canal YouTube com Dicas e Tutoriais sobre Tecnologia","publisher":{"@id":"https:\/\/localhost\/cmswebmundicom\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/localhost\/cmswebmundicom\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"pt-BR"},{"@type":"Organization","@id":"https:\/\/localhost\/cmswebmundicom\/#organization","name":"Web Mundi : Tecnologia","url":"https:\/\/localhost\/cmswebmundicom\/","logo":{"@type":"ImageObject","inLanguage":"pt-BR","@id":"https:\/\/localhost\/cmswebmundicom\/#\/schema\/logo\/image\/","url":"https:\/\/localhost\/cmswebmundicom\/wp-content\/uploads\/logo-web-mundi-com-preto-fundo-transparente.jpg","contentUrl":"https:\/\/localhost\/cmswebmundicom\/wp-content\/uploads\/logo-web-mundi-com-preto-fundo-transparente.jpg","width":295,"height":73,"caption":"Web Mundi : Tecnologia"},"image":{"@id":"https:\/\/localhost\/cmswebmundicom\/#\/schema\/logo\/image\/"},"sameAs":["http:\/\/www.facebook.com\/webmundi.net","https:\/\/x.com\/webmundi_com","https:\/\/www.instagram.com\/webmundi\/","http:\/\/www.pinterest.com\/webmundi","https:\/\/www.youtube.com\/channel\/UCqqJsllgIjDZjLE74Bba9og"]},{"@type":"Person","@id":"https:\/\/localhost\/cmswebmundicom\/#\/schema\/person\/2deb7f80cdeae68e2602c4702be722a0","name":"Renato Sanches","description":"Executivo Tecnologia da Informa\u00e7\u00e3o | Gerente | Projetos | Infraestrutura | Sistemas | Desenvolvimento | Banco de Dados | Fundador Web Mundi | Propriet\u00e1rio XP IT Tecnologia","sameAs":["http:\/\/www.webmundi.com\/","http:\/\/www.facebook.com\/webmundi.net","https:\/\/www.instagram.com\/webmundi\/","https:\/\/www.linkedin.com\/company\/webmundi\/","http:\/\/www.pinterest.com\/webmundi","https:\/\/x.com\/http:\/\/twitter.com\/webmundi_com","https:\/\/www.youtube.com\/channel\/UCqqJsllgIjDZjLE74Bba9og","http:\/\/webmundi.tumblr.com\/"]}]}},"_links":{"self":[{"href":"http:\/\/localhost\/cmswebmundicom\/wp-json\/wp\/v2\/posts\/46","targetHints":{"allow":["GET"]}}],"collection":[{"href":"http:\/\/localhost\/cmswebmundicom\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/localhost\/cmswebmundicom\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/localhost\/cmswebmundicom\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"http:\/\/localhost\/cmswebmundicom\/wp-json\/wp\/v2\/comments?post=46"}],"version-history":[{"count":1,"href":"http:\/\/localhost\/cmswebmundicom\/wp-json\/wp\/v2\/posts\/46\/revisions"}],"predecessor-version":[{"id":41876,"href":"http:\/\/localhost\/cmswebmundicom\/wp-json\/wp\/v2\/posts\/46\/revisions\/41876"}],"wp:featuredmedia":[{"embeddable":true,"href":"http:\/\/localhost\/cmswebmundicom\/wp-json\/wp\/v2\/media\/41868"}],"wp:attachment":[{"href":"http:\/\/localhost\/cmswebmundicom\/wp-json\/wp\/v2\/media?parent=46"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/localhost\/cmswebmundicom\/wp-json\/wp\/v2\/categories?post=46"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/localhost\/cmswebmundicom\/wp-json\/wp\/v2\/tags?post=46"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}