Specifies image properties.
Control | Description | Options | Property |
---|---|---|---|
Image Saving | Specifies whether or not the user can save an image. | default, disallow | theme_image_prop.html#mcs-image-saving |
Media style | Determines whether an object element should be treated as part of a page or an external resource that a user will explicitly retrieve. The property has two possible values; 'integral' means that the media should be displayed automatically, and 'external' means that a user action is required. | external, integral | theme_image_prop.html#mcs-media-style |
Whether or not the end user can save the image. The default value is 'default'.
Option | Description |
---|---|
default | Uses the device default behavior. |
disallow | Prevents the user from saving the image. |
inherit | The value of the property should be inherited from the parent element. |
Determines whether an object element should be treated as part of a page or an external resource that the user will explicitly retrieve. It is a list of two possible values in order of preference. The default value is 'integral external'.
Option | Description |
---|---|
external | Indicates that the user action is required to display the media object. |
integral | Indicates that the media should be displayed automatically. |
inherit | The value of the property should be inherited from the parent element. |
<?xml version="1.0" encoding="UTF-8"?>
<html xmlns="http://www.w3.org/2002/06/xhtml2"
xmlns:mcs="http://www.volantis.com/xmlns/2006/01/xdime/mcs">
<head>
<title>Position properties</title>
<style type="text/css">
object {
mcs-image-saving: default;
mcs-media-style: external;
}
</style>
</head>
<body>
<div class="class2">
<object src="http://localhost:8080/mcs/welcome/images/logo_sys_r_rgb_150.gif" srctype="image/gif">
<param name="mcs-transcode" value="false"/>
</object>
<p>Antenna Software helps organizations solve the complexity of delivering the true mobile Internet to
thousands of unique devices, without compromise, to the highest quality user experience,
performance and reliability.</p>
</div>
</body>
</html>