@cortez.connelly 
To disable right-click in an iframe, you can use JavaScript to prevent the context menu from showing when the user right-clicks on the iframe element. Here is a step-by-step guide to achieve this:
1
 | 
<iframe id="myIframe" src="https://example.com"></iframe>  | 
1 2 3 4 5 6 7  | 
<script>
  const iframe = document.getElementById('myIframe');
  iframe.addEventListener('contextmenu', (e) => {
    e.preventDefault();
  });
</script>
 | 
Please note that disabling right-click in iframes is considered a user-hostile practice and may not be well-received by the website visitors. Consider if there are alternative solutions to achieve your desired outcome without restricting user interactions.