The PDF Forms component can be dropped into a standalone Angular component that points at an ASP.NET Core endpoint.

Host the form in a standalone component.
import { Component } from '@angular/core';
import { StiForm, StimulsoftFormsModule } from 'stimulsoft-forms';

@Component({
    selector: 'app-root',
    standalone: true,
    imports: [StimulsoftFormsModule],
    template: `<sti-form [form]="form"></sti-form>`
})
export class AppComponent {
    form = new StiForm({ requestUrl: 'api/forms/action' });
}

How it works. The standalone component hosts the form and calls the backend endpoint, so PDF forms integrate without a shared module.

By using this website, you agree to the use of cookies for analytics and personalized content. Cookies store useful information on your computer to help us improve efficiency and usability. For more information, please read the privacy policy and cookie policy.