rounded String(default: "medium")

Sets a value controlling the border radius. Can also be set to the following string values:

  • "none"
  • "small"
  • "medium"
  • "large"
  • "full"

Example - sets a border radius

<input id="maskedtextbox" />
<script>
$("#maskedtextbox").kendoMaskedTextBox({
    mask: "000000",
    size: "large",
    rounded: "large"
});
</script>
In this article