We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b51b351 commit ee4a497Copy full SHA for ee4a497
examples/Primer.m
@@ -73,10 +73,10 @@
73
sec = f.sections{2}.sections{1};
74
75
% display all Section properties
76
-cellfun(@(x) disp(x), sec.allProperties);
+cellfun(@(x) disp(x), sec.properties);
77
78
% get a certain Value by index
79
-value = sec.allProperties{1}.values{1};
+value = sec.properties{1}.values{1};
80
81
% or by name
82
value = sec.open_property('Name').values{1}.value;
0 commit comments