<< groot | Graphics functions | hist >> |
h = hggroup() |
h = hggroup(..., propertyName, propertyValue, ...) |
h = hggroup(ax, ...) |
graphics object: axes or hggroup.
a scalar string or row vector character.
a value.
a graphics object of type: hggroup
hggroup creates a hggroup object as a child of the current axes and returns its handle, h.
The hggroup object is used to group graphics objects, such as lines, patches, and text, so that they can be manipulated together.
figure();
ax = gca();
g = hggroup();
h = text(0.1, 0.1, 'tttt', 'Parent', g);
h.Parent
h.Visible
h.Visible = 'off';
gca.
Version | Description |
---|---|
1.0.0 | initial version |
Allan CORNET