| MATLAB Application Program Interface Reference | Help Desk |
mexSet
Set the value of the specified Handle Graphics property
#include "mex.h" int mexSet(double handle, const char *property, mxArray *value);handle
Handle to a particular graphics object.
property valueThe new value to assign to the property.
0 on success; 1 on failure. Possible causes of failure includemexSet to set the value of the property of a certain graphics object. mexSet is the API equivalent of MATLAB's set function. To get the value of a graphics property, call mexGet.
See the example on the mexGet reference page.
mexGet