tns-core-modules
Version:
Telerik NativeScript Core Modules
15 lines (14 loc) • 676 B
JavaScript
var common = require("./text-view-common");
global.moduleMerge(common, exports);
var TextView = (function (_super) {
__extends(TextView, _super);
function TextView() {
_super.apply(this, arguments);
}
TextView.prototype._configureEditText = function () {
this.android.setInputType(android.text.InputType.TYPE_CLASS_TEXT | android.text.InputType.TYPE_TEXT_VARIATION_NORMAL | android.text.InputType.TYPE_TEXT_FLAG_CAP_SENTENCES | android.text.InputType.TYPE_TEXT_FLAG_MULTI_LINE);
this.android.setGravity(android.view.Gravity.TOP | android.view.Gravity.LEFT);
};
return TextView;
}(common.TextView));
exports.TextView = TextView;