Skip to content

Latest commit

 

History

History
30 lines (17 loc) · 833 Bytes

File metadata and controls

30 lines (17 loc) · 833 Bytes

MATLAB App Designer Password Edit Field

View App Designer Password Edit Field on File Exchange

Insert protected password field to your App Designer App

App-Designer-Password-Edit

How to use

  1. Copy passwordEdit.html file to your App's folder

  2. Insert HTML Component to your App. Rename it to 'PasswordHTML'

  3. Setup PasswordHTML component to use passwordEdit.html file

  4. Create for PasswordHTML component DataChanged callback:

function PasswordHTMLDataChanged(app, event)
    password = app.PasswordHTML.Data;
    disp(password);
end

Example

Examine PasswordEditExample.mlapp