New to Kendo UI for Angular? Start a free 30-day trial
TextBoxModule
Defines the NgModule
for the TextBox directive.
Use this module to add the TextBox directive to your NgModule-based Angular application.
typescript
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 {}