set_pborder_visibility.m.html CLAWPACK  
 Source file:   set_pborder_visibility.m
 Directory:   /Users/rjl/git/rjleveque/clawpack-4.6.3/matlab
 Converted:   Mon Jan 21 2013 at 20:16:04   using clawcode2html
 This documentation file will not reflect any later changes in the source file.

 
function set_pborder_visibility(p)

% Internal matlab routine for Clawpack graphics.

if (~ishandle(p))
  return;
end;

p_status = get(p,'Visible');
udata = get(p,'UserData');

border_state = strcmp(get(udata.border,'Tag'),'on');
toggle_visibility(p,border_state,udata.border);