|
ASPOSE home |
java.lang.Objectcom.aspose.words.OleFormat
public class OleFormat
Use the
Property Getters/Setters Summary | ||
---|---|---|
boolean | getAutoUpdate() | |
void | setAutoUpdate(boolean value) | |
Specifies whether the link to the OLE object is automatically updated or not in Microsoft Word. | ||
java.util.UUID | getClsid() | |
Gets the CLSID of the OLE object. | ||
boolean | isLink() | |
Returns true if the OLE object is linked (when |
||
java.lang.String | getProgId() | |
void | setProgId(java.lang.String value) | |
Gets or sets the ProgID of the OLE object. | ||
java.lang.String | getSourceFullName() | |
void | setSourceFullName(java.lang.String value) | |
Gets or sets the path and name of the source file for the linked OLE object. | ||
java.lang.String | getSourceItem() | |
void | setSourceItem(java.lang.String value) | |
Gets or sets a string that is used to identify the portion of the source file that is being linked. |
Method Summary | ||
---|---|---|
void | save(java.io.OutputStream stream) | |
Stores the native data of the OLE object into the specified stream in the Structured Storage format. |
Property Getters/Setters Detail |
---|
getProgId/setProgId | |
public java.lang.String getProgId() public void setProgId(java.lang.String value) |
The default value is an empty string.
isLink | |
public boolean isLink() |
getSourceFullName/setSourceFullName | |
public java.lang.String getSourceFullName() public void setSourceFullName(java.lang.String value) |
The default value is an empty string.
If
getSourceItem/setSourceItem | |
public java.lang.String getSourceItem() public void setSourceItem(java.lang.String value) |
The default value is an empty string.
For example, if the source file is a Microsoft Excel workbook, the
getAutoUpdate/setAutoUpdate | |
public boolean getAutoUpdate() public void setAutoUpdate(boolean value) |
The default value is false.
getClsid | |
public java.util.UUID getClsid() |
Method Detail |
---|
save | |
public void save(java.io.OutputStream stream) throws java.lang.Exception |
It is the responsibility of the caller to dispose the stream.
stream
- Where to save the OLE object data.
|
ASPOSE home |