Method from org.apache.pdfbox.pdmodel.interactive.action.type.PDWindowsLaunchParams Detail: |
public COSDictionary getCOSDictionary() {
return params;
}
Convert this standard java object to a COS object. |
public COSBase getCOSObject() {
return params;
}
Convert this standard java object to a COS object. |
public String getDirectory() {
return params.getString( "D" );
}
|
public String getExecuteParam() {
return params.getString( "P" );
}
A parameter to pass the executable. |
public String getFilename() {
return params.getString( "F" );
}
|
public String getOperation() {
return params.getString( "O", OPERATION_OPEN );
}
Get the operation to perform on the file. This method will not return null,
OPERATION_OPEN is the default. |
public void setDirectory(String dir) {
params.setString( "D", dir );
}
Set the dir to launch from. |
public void setExecuteParam(String param) {
params.setString( "P", param );
}
Set the parameter to pass the executable. |
public void setFilename(String file) {
params.setString( "F", file );
}
|
public void setOperation(String op) {
params.setString( "D", op );
}
Set the operation to perform.. |