{"id":174,"date":"2007-08-31T16:14:00","date_gmt":"2007-08-31T16:14:00","guid":{"rendered":"http:\/\/www.webmundi.com\/?p=174"},"modified":"2025-03-20T18:03:39","modified_gmt":"2025-03-20T21:03:39","slug":"bloquear-copiar-colar-textbox-visual-basic","status":"publish","type":"post","link":"http:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/bloquear-copiar-colar-textbox-visual-basic\/","title":{"rendered":"Bloqueando fun\u00e7\u00f5es Copiar e Colar em caixas de texto"},"content":{"rendered":"

Em algumas situa\u00e7\u00f5es, pode ser necess\u00e1rio impedir que o usu\u00e1rio copie ou cole dados<\/strong> em uma TextBox<\/strong>. No Visual Basic<\/strong>, isso pode ser feito interceptando eventos do teclado.<\/p>

Bloqueando CTRL+C (Copiar) e CTRL+V (Colar)<\/h2>

O evento KeyDown<\/code><\/strong> n\u00e3o consegue detectar essas combina\u00e7\u00f5es, mas o evento KeyPress<\/code><\/strong> pode captur\u00e1-las pelos c\u00f3digos ASCII<\/strong> das teclas:<\/p>

CTRL+C<\/strong> \u2192 C\u00f3digo 3<\/code>
CTRL+V<\/strong> \u2192 C\u00f3digo 22<\/code><\/p>

C\u00f3digo para Bloquear Copiar e Colar<\/h3>
Private Sub Text1_KeyPress(KeyAscii As Integer)\n    If KeyAscii = 3 Or KeyAscii = 22 Then KeyAscii = 0\n    ' CTRL+C = 3 e CTRL+V = 22 na tabela ASCII\nEnd Sub\n<\/code><\/pre>

Explica\u00e7\u00e3o do C\u00f3digo<\/h2>

KeyAscii = 3<\/strong> \u2192 Impede o uso de CTRL+C<\/strong> (Copiar).
KeyAscii = 22<\/strong> \u2192 Impede o uso de CTRL+V<\/strong> (Colar).
KeyAscii = 0<\/strong> \u2192 Cancela a a\u00e7\u00e3o da tecla pressionada.<\/p>

Bloqueando Copiar e Colar com o Mouse<\/h2>

Se quiser evitar que o usu\u00e1rio clique com o bot\u00e3o direito<\/strong> e copie\/cole pelo menu de contexto, desative a propriedade Enabled<\/code> do Menu Padr\u00e3o da Caixa de Texto<\/strong>:<\/p>

Private Sub Text1_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)\n    If Button = 2 Then Cancel = True ' Bloqueia o menu de contexto do bot\u00e3o direito\nEnd Sub\n<\/code><\/pre>

Exemplo Pr\u00e1tico<\/h2>

Essa fun\u00e7\u00e3o pode ser \u00fatil para:
Campos de senha ou dados sens\u00edveis<\/strong>, evitando c\u00f3pias indesejadas.
Sistemas de cadastro<\/strong>, impedindo colagens de valores incorretos.
Ambientes controlados<\/strong>, onde \u00e9 necess\u00e1rio restringir o uso do CTRL+C<\/strong> e CTRL+V<\/strong>.<\/p>


","protected":false},"excerpt":{"rendered":"

Em algumas situa\u00e7\u00f5es, pode ser necess\u00e1rio impedir que o usu\u00e1rio copie ou cole dados em uma TextBox. No Visual Basic,…<\/p>\n","protected":false},"author":2,"featured_media":41906,"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":[13,10],"tags":[28,14,31],"class_list":["post-174","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-desenvolvimento-de-sistemas","category-visual-basic","tag-desenvolvimento-de-sistemas","tag-programacao","tag-visual-basic"],"yoast_head":"\nComo Bloquear copiar e colar em TextBox no Visual Basic<\/title>\n<meta name=\"description\" content=\"Saiba como bloquear as fun\u00e7\u00f5es copiar (CTRL+C) e colar (CTRL+V) em caixas de texto no Visual Basic usando eventos de teclado. C\u00f3digo completo e otimizado.\" \/>\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\/bloquear-copiar-colar-textbox-visual-basic\/\" \/>\n<meta property=\"og:locale\" content=\"pt_BR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Como Bloquear copiar e colar em TextBox no Visual Basic\" \/>\n<meta property=\"og:description\" content=\"Saiba como bloquear as fun\u00e7\u00f5es copiar (CTRL+C) e colar (CTRL+V) em caixas de texto no Visual Basic usando eventos de teclado. C\u00f3digo completo e otimizado.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/bloquear-copiar-colar-textbox-visual-basic\/\" \/>\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-31T16:14:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-03-20T21:03:39+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/localhost\/cmswebmundicom\/wp-content\/uploads\/dicas-de-visual-basic.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\/bloquear-copiar-colar-textbox-visual-basic\/#article\",\n\t \"isPartOf\": {\n\t \"@id\": \"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/bloquear-copiar-colar-textbox-visual-basic\/\"\n\t },\n\t \"author\": {\n\t \"name\": \"Renato Sanches\",\n\t \"@id\": \"https:\/\/localhost\/cmswebmundicom\/#\/schema\/person\/2deb7f80cdeae68e2602c4702be722a0\"\n\t },\n\t \"headline\": \"Bloqueando fun\u00e7\u00f5es Copiar e Colar em caixas de texto\",\n\t \"datePublished\": \"2007-08-31T16:14:00+00:00\",\n\t \"dateModified\": \"2025-03-20T21:03:39+00:00\",\n\t \"mainEntityOfPage\": {\n\t \"@id\": \"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/bloquear-copiar-colar-textbox-visual-basic\/\"\n\t },\n\t \"wordCount\": 203,\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\/bloquear-copiar-colar-textbox-visual-basic\/#primaryimage\"\n\t },\n\t \"thumbnailUrl\": \"http:\/\/localhost\/cmswebmundicom\/wp-content\/uploads\/dicas-de-visual-basic.jpg\",\n\t \"keywords\": [\n\t \"Desenvolvimento de sistemas\",\n\t \"Programa\u00e7\u00e3o\",\n\t \"Visual Basic\"\n\t ],\n\t \"articleSection\": [\n\t \"Desenvolvimento de Software\",\n\t \"Visual Basic\"\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\/bloquear-copiar-colar-textbox-visual-basic\/#respond\"\n\t ]\n\t }\n\t ]\n\t },\n\t {\n\t \"@type\": \"WebPage\",\n\t \"@id\": \"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/bloquear-copiar-colar-textbox-visual-basic\/\",\n\t \"url\": \"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/bloquear-copiar-colar-textbox-visual-basic\/\",\n\t \"name\": \"Como Bloquear copiar e colar em TextBox no Visual Basic\",\n\t \"isPartOf\": {\n\t \"@id\": \"https:\/\/localhost\/cmswebmundicom\/#website\"\n\t },\n\t \"primaryImageOfPage\": {\n\t \"@id\": \"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/bloquear-copiar-colar-textbox-visual-basic\/#primaryimage\"\n\t },\n\t \"image\": {\n\t \"@id\": \"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/bloquear-copiar-colar-textbox-visual-basic\/#primaryimage\"\n\t },\n\t \"thumbnailUrl\": \"http:\/\/localhost\/cmswebmundicom\/wp-content\/uploads\/dicas-de-visual-basic.jpg\",\n\t \"datePublished\": \"2007-08-31T16:14:00+00:00\",\n\t \"dateModified\": \"2025-03-20T21:03:39+00:00\",\n\t \"description\": \"Saiba como bloquear as fun\u00e7\u00f5es copiar (CTRL+C) e colar (CTRL+V) em caixas de texto no Visual Basic usando eventos de teclado. C\u00f3digo completo e otimizado.\",\n\t \"breadcrumb\": {\n\t \"@id\": \"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/bloquear-copiar-colar-textbox-visual-basic\/#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\/bloquear-copiar-colar-textbox-visual-basic\/\"\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\/bloquear-copiar-colar-textbox-visual-basic\/#primaryimage\",\n\t \"url\": \"http:\/\/localhost\/cmswebmundicom\/wp-content\/uploads\/dicas-de-visual-basic.jpg\",\n\t \"contentUrl\": \"http:\/\/localhost\/cmswebmundicom\/wp-content\/uploads\/dicas-de-visual-basic.jpg\",\n\t \"width\": 1920,\n\t \"height\": 1080,\n\t \"caption\": \"Dicas de programa\u00e7\u00e3o em Visual Basic\"\n\t },\n\t {\n\t \"@type\": \"BreadcrumbList\",\n\t \"@id\": \"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/bloquear-copiar-colar-textbox-visual-basic\/#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\": \"Bloqueando fun\u00e7\u00f5es Copiar e Colar em caixas de texto\"\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":"Como Bloquear copiar e colar em TextBox no Visual Basic","description":"Saiba como bloquear as fun\u00e7\u00f5es copiar (CTRL+C) e colar (CTRL+V) em caixas de texto no Visual Basic usando eventos de teclado. C\u00f3digo completo e otimizado.","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\/bloquear-copiar-colar-textbox-visual-basic\/","og_locale":"pt_BR","og_type":"article","og_title":"Como Bloquear copiar e colar em TextBox no Visual Basic","og_description":"Saiba como bloquear as fun\u00e7\u00f5es copiar (CTRL+C) e colar (CTRL+V) em caixas de texto no Visual Basic usando eventos de teclado. C\u00f3digo completo e otimizado.","og_url":"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/bloquear-copiar-colar-textbox-visual-basic\/","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-31T16:14:00+00:00","article_modified_time":"2025-03-20T21:03:39+00:00","og_image":[{"width":1920,"height":1080,"url":"https:\/\/localhost\/cmswebmundicom\/wp-content\/uploads\/dicas-de-visual-basic.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\/bloquear-copiar-colar-textbox-visual-basic\/#article","isPartOf":{"@id":"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/bloquear-copiar-colar-textbox-visual-basic\/"},"author":{"name":"Renato Sanches","@id":"https:\/\/localhost\/cmswebmundicom\/#\/schema\/person\/2deb7f80cdeae68e2602c4702be722a0"},"headline":"Bloqueando fun\u00e7\u00f5es Copiar e Colar em caixas de texto","datePublished":"2007-08-31T16:14:00+00:00","dateModified":"2025-03-20T21:03:39+00:00","mainEntityOfPage":{"@id":"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/bloquear-copiar-colar-textbox-visual-basic\/"},"wordCount":203,"commentCount":0,"publisher":{"@id":"https:\/\/localhost\/cmswebmundicom\/#organization"},"image":{"@id":"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/bloquear-copiar-colar-textbox-visual-basic\/#primaryimage"},"thumbnailUrl":"http:\/\/localhost\/cmswebmundicom\/wp-content\/uploads\/dicas-de-visual-basic.jpg","keywords":["Desenvolvimento de sistemas","Programa\u00e7\u00e3o","Visual Basic"],"articleSection":["Desenvolvimento de Software","Visual Basic"],"inLanguage":"pt-BR","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/bloquear-copiar-colar-textbox-visual-basic\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/bloquear-copiar-colar-textbox-visual-basic\/","url":"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/bloquear-copiar-colar-textbox-visual-basic\/","name":"Como Bloquear copiar e colar em TextBox no Visual Basic","isPartOf":{"@id":"https:\/\/localhost\/cmswebmundicom\/#website"},"primaryImageOfPage":{"@id":"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/bloquear-copiar-colar-textbox-visual-basic\/#primaryimage"},"image":{"@id":"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/bloquear-copiar-colar-textbox-visual-basic\/#primaryimage"},"thumbnailUrl":"http:\/\/localhost\/cmswebmundicom\/wp-content\/uploads\/dicas-de-visual-basic.jpg","datePublished":"2007-08-31T16:14:00+00:00","dateModified":"2025-03-20T21:03:39+00:00","description":"Saiba como bloquear as fun\u00e7\u00f5es copiar (CTRL+C) e colar (CTRL+V) em caixas de texto no Visual Basic usando eventos de teclado. C\u00f3digo completo e otimizado.","breadcrumb":{"@id":"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/bloquear-copiar-colar-textbox-visual-basic\/#breadcrumb"},"inLanguage":"pt-BR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/bloquear-copiar-colar-textbox-visual-basic\/"]}]},{"@type":"ImageObject","inLanguage":"pt-BR","@id":"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/bloquear-copiar-colar-textbox-visual-basic\/#primaryimage","url":"http:\/\/localhost\/cmswebmundicom\/wp-content\/uploads\/dicas-de-visual-basic.jpg","contentUrl":"http:\/\/localhost\/cmswebmundicom\/wp-content\/uploads\/dicas-de-visual-basic.jpg","width":1920,"height":1080,"caption":"Dicas de programa\u00e7\u00e3o em Visual Basic"},{"@type":"BreadcrumbList","@id":"https:\/\/localhost\/cmswebmundicom\/desenvolvimento-de-sistemas\/bloquear-copiar-colar-textbox-visual-basic\/#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":"Bloqueando fun\u00e7\u00f5es Copiar e Colar em caixas de texto"}]},{"@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\/174","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=174"}],"version-history":[{"count":1,"href":"http:\/\/localhost\/cmswebmundicom\/wp-json\/wp\/v2\/posts\/174\/revisions"}],"predecessor-version":[{"id":41927,"href":"http:\/\/localhost\/cmswebmundicom\/wp-json\/wp\/v2\/posts\/174\/revisions\/41927"}],"wp:featuredmedia":[{"embeddable":true,"href":"http:\/\/localhost\/cmswebmundicom\/wp-json\/wp\/v2\/media\/41906"}],"wp:attachment":[{"href":"http:\/\/localhost\/cmswebmundicom\/wp-json\/wp\/v2\/media?parent=174"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/localhost\/cmswebmundicom\/wp-json\/wp\/v2\/categories?post=174"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/localhost\/cmswebmundicom\/wp-json\/wp\/v2\/tags?post=174"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}