options Object

An object, which holds the options of the widget.

Example - get options of the component

<input id="maskedtextbox" />
<script>
$("#maskedtextbox").kendoMaskedTextBox();

var maskedtextbox = $("#maskedtextbox").data("kendoMaskedTextBox");

var options = maskedtextbox.options;
console.log(options)
</script>
In this article