11374
|
1 ## Copyright (C) 2010 Ben Abbott |
|
2 ## |
|
3 ## This file is part of Octave. |
|
4 ## |
|
5 ## Octave is free software; you can redistribute it and/or modify it |
|
6 ## under the terms of the GNU General Public License as published by |
|
7 ## the Free Software Foundation; either version 3 of the License, or (at |
|
8 ## your option) any later version. |
|
9 ## |
|
10 ## Octave is distributed in the hope that it will be useful, but |
|
11 ## WITHOUT ANY WARRANTY; without even the implied warranty of |
|
12 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
13 ## General Public License for more details. |
|
14 ## |
|
15 ## You should have received a copy of the GNU General Public License |
|
16 ## along with Octave; see the file COPYING. If not, see |
|
17 ## <http://www.gnu.org/licenses/>. |
|
18 |
|
19 ## -*- texinfo -*- |
|
20 ## @deftypefn {Function File} {@var{res} =} isprop (@var{h}, @var{prop}) |
|
21 ## Determines if @var{prop} is a property of the object with handle, @var{h}. |
|
22 ## @seealso{get, set} |
|
23 ## @end deftypefn |
|
24 |
|
25 ## Author: Ben Abbott <bpabbott@mac.com> |
|
26 |
|
27 function res = isprop (h, prop) |
|
28 ## Check input |
|
29 if (nargin < 1 || nargin > 2) |
|
30 print_usage (); |
|
31 endif |
|
32 |
|
33 if (! ishandle (h)) |
|
34 error ("isprop: first input argument must be a handle"); |
|
35 elseif (! ischar (prop)) |
|
36 error ("isprop: second input argument must be string"); |
|
37 endif |
|
38 |
|
39 res = true; |
|
40 try |
|
41 v = get (h, prop); |
|
42 catch |
|
43 res = false; |
|
44 end_try_catch |
|
45 endfunction |
|
46 |
|
47 %!assert (isprop (0, "foobar"), false) |
|
48 |
|
49 %!assert (isprop (0, "screenpixelsperinch"), true) |
|
50 |