Skip to main content

Transfer Options

This section describes the BfmTransferOptionsComponent component.

Usage

You need to import it in your module and use it in your template.

transfer-options.component.ts
import { BfmTransferOptionsComponent } from '@celerofinancas/ui-charges';

@Component({
standalone: true,
selector: 'options',
imports: [BfmTransferOptionsComponent],
templateUrl: './transfer-options.component.html',
})
export class TransferOptionsComponent {}

Then, in your template, you can use the component like this:

transfer-options.component.html
<bfm-transfer-options 
[enableBetweenAccounts]="true"
[enableBulk]="true"
[enableCompanyRelated]="true"
/>

Inputs

The BfmTransferOptionsComponent component has the following inputs:

enableBetweenAccounts

Enable between accounts option.

TypeDefault
booleantrue

enableBulk

Enable bulk option.

TypeDefault
booleantrue

enableCompanyRelated

Enable company related option.

TypeDefault
booleantrue

Events

The BfmTransferOptionsComponent component has no events.