User`s guide
5 Connecting to Hardware
5-20
The imaqhelp function returns reference information about the property with a
complete description. This example uses imaqhelp to get information about the
LoggingMode property.
imaqhelp(vid,'LoggingMode')
Setting the Value of an Object Property
To set the value of a particular property of an image acquisition object, you assign the
value to the property as you would a field in a MATLAB structure, using dot notation.
Note Because some properties are read only, only a subset of all video input and video
source properties can be set.
This example sets the value of a property by assigning the value to the object as if it were
a MATLAB structure.
vid.LoggingMode = 'disk';
% Verfiy the property setting.
vid.LoggingMode
ans =
disk
Viewing a List of All Settable Object Properties
To view a list of all the properties of a video input object or video source object that can
be set, use the set function.
set(vid)