Skip to content

roslovets/App-Designer-Password-Edit

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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