I get the properties from the image object 'Image1' and stores them in table:
tProperties = Image.GetProperties("Image1");
How to change item in the object properties table? For example, set 'Visible = false',
and then use the modified table to another object:
Image.SetProperties("Image2", tProperties);
tProperties = Image.GetProperties("Image1");
How to change item in the object properties table? For example, set 'Visible = false',
and then use the modified table to another object:
Image.SetProperties("Image2", tProperties);
Comment