options Object

An object, which holds the options of the widget.

Example - get options of the widget

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

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

var options = maskedtextbox.options;
<script>
In this article