TextBoxModule
Class
Defines the NgModule for the TextBox directive.
Use this module to add the TextBox directive to your NgModule-based Angular application.
Definition
Package:@progress/kendo-angular-inputs
Syntax:
TS
import { TextBoxModule } from '@progress/kendo-angular-inputs';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
@NgModule({
declarations: [AppComponent],
imports: [BrowserModule, TextBoxModule],
bootstrap: [AppComponent]
})
export class AppModule {}