view m-toolbox/m/gui/ltpdv/callbacks/ltpdv_buildPropertiesPanel.m @ 8:2f5c9bd7d95d
database-connection-manager
Clarify ltpda_uo.retrieve parameters handling
author |
Daniele Nicolodi <nicolodi@science.unitn.it> |
date |
Mon, 05 Dec 2011 16:20:06 +0100 (2011-12-05) |
parents |
f0afece42f48 |
children |
|
line source
function ltpdv_buildPropertiesPanel(panH, mainfig)
EditFontSize = 11;
vmarg = 0.03;
pmarg = 0.01;
CommHeight = EditFontSize/400;
ph = 1-2*vmarg;
htab = uipanel('Parent', panH, 'Position', [pmarg vmarg 1-2*pmarg ph]);
set(htab, 'Units', 'Normalized')
set(htab, 'Title', 'Properties for ')
set(htab, 'BackgroundColor', [1 1 0.6]);
set(htab, 'ForegroundColor', 'k');
set(htab, 'Tag', 'LTPDVobjectProperties');
end