Package com.aspose.threed
Class RvmSaveOptions
- java.lang.Object
-
- com.aspose.threed.IOConfig
-
- com.aspose.threed.SaveOptions
-
- com.aspose.threed.RvmSaveOptions
-
public class RvmSaveOptions extends SaveOptions
Save options for Aveva PDMS RVM file.
-
-
Constructor Summary
Constructors Constructor Description RvmSaveOptions()
Constructor ofRvmSaveOptions
RvmSaveOptions(FileContentType contentType)
Constructor ofRvmSaveOptions
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getAttributeListFile()
Gets the file name of attribute list file, exporter will generate a name based on the .rvm file name when this property is undefined, default value is null.java.lang.String
getAttributePrefix()
Gets the prefix of which attributes that will be exported, the exported property will contains no prefix, custom properties with different prefix will not be exported, default value is 'rvm:'.java.lang.String
getAuthor()
Author information, default value is '3d@aspose'java.lang.String
getCreationTime()
The timestamp that exported this file, default value is current timeboolean
getExportAttributes()
Gets whether to export the attribute list to an external .att file, default value is false.java.lang.String
getFileNote()
File note in the file header.void
setAttributeListFile(java.lang.String value)
Sets the file name of attribute list file, exporter will generate a name based on the .rvm file name when this property is undefined, default value is null.void
setAttributePrefix(java.lang.String value)
Sets the prefix of which attributes that will be exported, the exported property will contains no prefix, custom properties with different prefix will not be exported, default value is 'rvm:'.void
setAuthor(java.lang.String value)
Author information, default value is '3d@aspose'void
setCreationTime(java.lang.String value)
The timestamp that exported this file, default value is current timevoid
setExportAttributes(boolean value)
Sets whether to export the attribute list to an external .att file, default value is false.void
setFileNote(java.lang.String value)
File note in the file header.-
Methods inherited from class com.aspose.threed.IOConfig
getEncoding, getFileFormat, getFileName, getFileSystem, getFileSystemFactory, getLookupPaths, lookupForFile, setEncoding, setFileName, setFileSystem, setFileSystemFactory, setLookupPaths
-
-
-
-
Constructor Detail
-
RvmSaveOptions
public RvmSaveOptions()
Constructor ofRvmSaveOptions
-
RvmSaveOptions
public RvmSaveOptions(FileContentType contentType)
Constructor ofRvmSaveOptions
- Parameters:
contentType
- Text or binary RVM file?
-
-
Method Detail
-
getFileNote
public java.lang.String getFileNote()
File note in the file header.
-
setFileNote
public void setFileNote(java.lang.String value)
File note in the file header.- Parameters:
value
- New value
-
getAuthor
public java.lang.String getAuthor()
Author information, default value is '3d@aspose'
-
setAuthor
public void setAuthor(java.lang.String value)
Author information, default value is '3d@aspose'- Parameters:
value
- New value
-
getCreationTime
public java.lang.String getCreationTime()
The timestamp that exported this file, default value is current time
-
setCreationTime
public void setCreationTime(java.lang.String value)
The timestamp that exported this file, default value is current time- Parameters:
value
- New value
-
getAttributePrefix
public java.lang.String getAttributePrefix()
Gets the prefix of which attributes that will be exported, the exported property will contains no prefix, custom properties with different prefix will not be exported, default value is 'rvm:'. For example if a property is rvm:Refno=345, the exported attribute will be Refno = 345, the prefix is stripped.
-
setAttributePrefix
public void setAttributePrefix(java.lang.String value)
Sets the prefix of which attributes that will be exported, the exported property will contains no prefix, custom properties with different prefix will not be exported, default value is 'rvm:'. For example if a property is rvm:Refno=345, the exported attribute will be Refno = 345, the prefix is stripped.- Parameters:
value
- New value
-
getAttributeListFile
public java.lang.String getAttributeListFile()
Gets the file name of attribute list file, exporter will generate a name based on the .rvm file name when this property is undefined, default value is null.
-
setAttributeListFile
public void setAttributeListFile(java.lang.String value)
Sets the file name of attribute list file, exporter will generate a name based on the .rvm file name when this property is undefined, default value is null.- Parameters:
value
- New value
-
getExportAttributes
public boolean getExportAttributes()
Gets whether to export the attribute list to an external .att file, default value is false.
-
setExportAttributes
public void setExportAttributes(boolean value)
Sets whether to export the attribute list to an external .att file, default value is false.- Parameters:
value
- New value
-
-