New to Kendo UI for Angular? Start a free 30-day trial
NumericTextBoxModule
Updated on Oct 30, 2025
Defines the NgModule for the NumericTextBox component.
Use this module to add the NumericTextBox component to your NgModule-based Angular application.
typescript
import { NumericTextBoxModule } from '@progress/kendo-angular-inputs';
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { AppComponent } from './app.component';
@NgModule({
  declarations: [AppComponent],
  imports: [BrowserModule, NumericTextBoxModule],
  bootstrap: [AppComponent]
})
export class AppModule {}