| MATLAB Function Reference | ![]() |
inspect
inspect(h)
inspect([h1,h2,...])
inspect creates a separate Property Inspector window to enable the display and modification of the properties of any object you select in the figure window or Layout Editor. If no object is selected, the Property Inspector is blank.
inspect(h) creates a Property Inspector window for the object whose handle is h.
inspect([h1,h2,...]) displays properties that objects h1 and h2 have in common, or a blank window if there are no such properties; any number of objects can be inspected and edited in this way (for example, handles returned by the bar command).
The Property Inspector has the following behaviors:
Only one Property Inspector window is active at any given time; when you inspect a new object, its properties replace those of the object last inspected.
When the Property Inspector is open and plot edit mode is on, clicking any object in the figure window displays the properties of that object (or set of objects) in the Property Inspector.
When you select and inspect two or more objects of different types, the Property Inspector only shows the properties that all objects have in common.
To change the value of any property, click on the property name shown at the left side of the window, and then enter the new value in the field at the right.
The Property Inspector provides two different views:
List view — properties are ordered alphabetically (default); this is the only view available for annotation objects.
Group view — properties are grouped under classified headings (Handle Graphics objects only)
To view alphabetically, click the "AZ" Icon
in the Property Inspector toolbar. To see properties
in groups, click
the "++" icon
. When properties are grouped, the "-"
and "+" icons are enabled; click
to expand all categories and
click
to collapse all categories. You
can also expand and collapse individual categories by clicking on the "+"
next to the category name. Some properties expand and collapse
Notes To see a complete description of any property, right-click on its name or value and select What's This; a help window opens that displays the reference page entry for it. The Property Inspector displays most, but not all, properties of Handle
Graphics objects. For example, the parent and children of
HG objects are not shown. |
Create a surface mesh plot and view its properties with the Property Inspector:
Z = peaks(30); h = surf(Z) inspect(h)

Use the Property Inspector to change the FaceAlpha property from 1.0 to 0.4 (equivalent to the command set(h,'FaceAlpha',0.4)). FaceAlpha controls the tranparency of patch faces.

When you press Enter or click a different field, the FaceAlpha property of the surface object is updated:

Create a serial port object for COM1 and use the Property Inspector to peruse its properties:
s = serial('COM1');
inspect(s)

Because COM objects do not define property groupings, only the alphabetical list view of their properties is available.
Create a COM Excel server and open a Property Inspector window with inspect:
h = actxserver('excel.application');
inspect(h)Scroll down until you see the CalculationInterruptKey property, which by default is xlAnyKey. Click on the down-arrow in the right margin of the property inspector and select xlEscKey from the drop-down menu, as shown below:

Check this field in the MATLAB command window using get to confirm that it has changed:
get(h,'CalculationInterruptKey') ans = xlEscKey
get, set, isprop, guide, addproperty, deleteproperty
![]() | inputParser | instrcallback | ![]() |
| © 1984-2008- The MathWorks, Inc. - Site Help - Patents - Trademarks - Privacy Policy - Preventing Piracy - RSS |