Use Security operations to work with user information.
login();
1
1: Operation
[Login] | BlockText'login' |
Logs in the user into the system.
User authentication and login are performed with the user name and password set in the source properties.
|
||||||
[Logout] | BlockText'logout' |
Logs out the user from the system. | ||||||
[PopupSystemLoginDialog] | BlockText'showSystemLoginDialog' |
Pops up the log in dialog box. | ||||||
[PopupAddUserDialog] | Block[PopupAddUserDialog] Text'showAddUserDialog' |
Pops up a dialog box for adding users.
For information about adding users, refer to the following. |
||||||
[PopupDeleteUserDialog] | Block[PopupDeleteUserDialog] Text'showDeleteUserDialog' |
Pops up a dialog box for deleting users.
For information about deleting users, refer to the following. |
||||||
[Export] | Block[Export] Text'exportUserInfo' |
Exports user information
from the display unit to USB storage.
|
||||||
[Import] | Block[Import] Text'importUserInfo' |
Imports user information
from USB storage to the display unit.
|
(Example: Login)
onClick($GraphicObject.Switch1, ()=>{
login();
});
You can run only one of the following Security operations at a time. While the first operation is still running, if you run any of the other operations, it will fail to run.
[PopupSystemLoginDialog]
[PopupAddUserDialog]
[PopupDeleteUserDialog]
[Export]
[Import]