java.lang.Object
com.aspose.diagram.ForeignData
public class ForeignData
| Property Getters/Setters Summary | ||
|---|---|---|
double | getCompressionLevel() | |
void | setCompressionLevel(double) | |
| This attribute is only meaningful if the foreign data is a raster-based foreign object, such as a DIB, JPG, PNG, TIFF, or GIF file. The value indicates the level of compression applied to the file. Compression level is measured in hundreds of a percent. | ||
int | getCompressionType() | |
void | setCompressionType(int) | |
| This attribute is only meaningful if the foreign data is a raster-based foreign object, such as a DIB, JPG, PNG, TIFF, or GIF file. The value indicates the type of compression applied to the file. The value of the property is CompressionType integer constant. | ||
double | getExtentX() | |
void | setExtentX(double) | |
| This attribute is only meaningful if the foreign data is a metafile. The value indicates the horizontal extent of the metafile. | ||
double | getExtentY() | |
void | setExtentY(double) | |
| This attribute is only meaningful if the foreign data is a metafile. The value indicates the vertical extent of the metafile. | ||
int | getForeignType() | |
void | setForeignType(int) | |
| Data type. The value of the property is ForeignType integer constant. | ||
byte[] | getImageData() | |
void | setImageData(byte[]) | |
| Represents image of ole object as byte array. | ||
int | getMappingMode() | |
void | setMappingMode(int) | |
| This attribute is only meaningful if the foreign data is a metafile. The value indicates the metafile mapping mode. | ||
byte[] | getObjectData() | |
void | setObjectData(byte[]) | |
| Represents embedded ole object data as byte array. | ||
double | getObjectHeight() | |
void | setObjectHeight(double) | |
| This attribute is only meaningful if the foreign data is an OLE2 embedded object. The value expresses the height of the object in page units. | ||
java.lang.String | getObjectSourceFullName() | |
void | setObjectSourceFullName(java.lang.String) | |
| Returns the source full name of the source file for the linked OLE object. | ||
int | getObjectType() | |
void | setObjectType(int) | |
| If the ForeignType attribute is "Object", the ForeignData element must also have an ObjectType attribute. The value of the property is ObjectType integer constant. | ||
double | getObjectWidth() | |
void | setObjectWidth(double) | |
| This attribute is only meaningful if the foreign data is an OLE2 embedded object. The value expresses the width of the object in page units. | ||
int | getShowAsIcon() | |
void | setShowAsIcon(int) | |
| This attribute is only meaningful if the foreign data is an OLE2 embedded object. The value of the property is BOOL integer constant. | ||
byte[] | getValue() | |
void | setValue(byte[]) | |
| Contains a MIME (Multipurpose Internet Mail Extensions) encoded BLOB of picture data, such as Windows metafile, bitmap, or OLE data. | ||
| Method Summary | ||
|---|---|---|
java.lang.Object | deepClone() | |
| Creates deep copy of this instance. | ||
| Property Getters/Setters Detail |
|---|
getImageData/setImageData | |
public byte[] getImageData() / public void setImageData(byte[] value) | |
getObjectData/setObjectData | |
public byte[] getObjectData() / public void setObjectData(byte[] value) | |
getForeignType/setForeignType | |
public int getForeignType() / public void setForeignType(int value) | |
getObjectType/setObjectType | |
public int getObjectType() / public void setObjectType(int value) | |
getShowAsIcon/setShowAsIcon | |
public int getShowAsIcon() / public void setShowAsIcon(int value) | |
getObjectWidth/setObjectWidth | |
public double getObjectWidth() / public void setObjectWidth(double value) | |
getObjectHeight/setObjectHeight | |
public double getObjectHeight() / public void setObjectHeight(double value) | |
getMappingMode/setMappingMode | |
public int getMappingMode() / public void setMappingMode(int value) | |
getExtentX/setExtentX | |
public double getExtentX() / public void setExtentX(double value) | |
getExtentY/setExtentY | |
public double getExtentY() / public void setExtentY(double value) | |
getCompressionType/setCompressionType | |
public int getCompressionType() / public void setCompressionType(int value) | |
getCompressionLevel/setCompressionLevel | |
public double getCompressionLevel() / public void setCompressionLevel(double value) | |
getValue/setValue | |
public byte[] getValue() / public void setValue(byte[] value) | |
getObjectSourceFullName/setObjectSourceFullName | |
public java.lang.String getObjectSourceFullName() / public void setObjectSourceFullName(java.lang.String value) | |
| Method Detail |
|---|
deepClone | |
public java.lang.Object deepClone()
throws java.lang.Exception | |