statusbar Matlab script

SPONSORED LINKS

    Specification

  • Version:
  • File size: 0 KB
  • File name: statusbar.m
  • Last update:
  • Platform: Windows / Linux / Mac OS / BSD / Solaris
  • Language: Matlab
  • Price:Freeware
  • Company: Yair Altman (View more)

statusbar script description:




Publisher review:
statusbar - set/get status bar(s) for GUI figures & Matlab desktop statusbar sets the status-bar text of the Matlab desktop or a figure. statusbar accepts arguments in the format accepted by the sprintf function and returns the statusbar handle(s), if available.Syntax:statusbarHandle = statusbar(handle, text, sprintf_args...)statusbar(text, ...) sets the status bar text for the currently selected figure. If no figure is selected, then one will be created. Note that figures with 'HandleVisibility' turned off will be skipped. In these cases, simply pass their figure handle as first argument.statusbar(handle, ...) sets the status bar text of the figure handle (or the figure which contains handle). If the status bar was not yet displayed for this figure, it will be created and displayed. If text is not supplied, then any existing status bar is erased, unlike statusbar(handle, '') which just clears the text.statusbar(0, ...) sets the Matlab desktop's status bar text. If text is not supplied, then any existing text is erased, like statusbar(0, '').statusbar([handles], ...) sets the status bar text of all the requested handles.statusbarHandle = statusbar(...) returns the status bar handle for the selected figure. The Matlab desktop does not expose its statusbar object, so statusbar(0, ...) always returns []. If multiple unique figure handles were requested, then statusbarHandle is an array of all non-empty status bar handles.Notes:1) The format statusbarHandle = statusbar(handle) does NOT erase any existing statusbar, but just returns the handles.2) The status bar is 20 pixels high across the entire bottom of the figure. It hides everything between pixel heights 0-20, even parts of uicontrols, regardless of who was created first!Examples:> statusbar; % delete status bar from current figure> statusbar(0, 'Desktop status: processing...');> statusbar([hFig1,hFig2], 'Please wait while processing...');> statusbar('Processing %d of %d (%.1f%%)...',idx,total,100*idx/total);> statusbar('Running... [%s%s]',repmat('*',1,fix(N*idx/total)),repmat('.',1,N-fix(N*idx/total)));> existingText = get(statusbar(myHandle),'Text');Examples customizing the status-bar appearance:> sb = statusbar('text');> set(sb.CornerGrip, 'visible','off');> set(sb.TextPanel, 'Foreground',[1,0,0], 'Background','cyan', 'ToolTipText','tool tip...')> set(sb, 'Background',java.awt.Color.cyan); Requirements: ยท MATLAB Release: R2007a
statusbar is a Matlab script for Development Tools scripts design by Yair Altman. It runs on following operating system: Windows / Linux / Mac OS / BSD / Solaris.
statusbar - set/get status bar(s) for GUI figures & Matlab desktop

Operating system:
Windows / Linux / Mac OS / BSD / Solaris

Latest script and internet news

222

222

22

Posted on: 18 Jul 2023 22:27 by A. Brown

111

111

111

Posted on: 18 Jul 2023 22:24 by A. Brown

The permanently active Push system offered by the new Google Chrome 42

The permanently active Push system offered by the new Google Chrome 42

Hacked By !Sc-sT

Posted on: 17 Mar 2015 07:57 by A. Brown

SPREAD THE WORD

User Rating


Rating: 2.2 out of 5
Based on 13 ratings. 13 user reviews.

  • Currently 2.15 out of 5
  • 1
  • 2
  • 3
  • 4
  • 5