In Power Apps, forms have different modes that control how the form behaves â whether users are viewing, editing, or creating data.
1. FormMode.View
Used to display data in read-only mode. Users can see the information but cannot make any changes.
ViewForm(Form1);
2. FormMode.Edit
Used to update existing records. Users can modify the data in the form.
EditForm(Form1);
3. FormMode.New
Used to create new records. The form usually starts with blank or default values.
NewForm(Form1);


