| SignDocRenderParametersfitRect Method |
Set the width and height for automatic computation of the zoom
factor to make the rendered image fit the specified width and
height.
This function overrides the zoom factor set by fitWidth(),
fitHeight(), and setZoom().
Throws SignDocInvalidArgumentException if the width or the height
is invalid.
Namespace: de.softpro.signdocsdkAssembly: SPSignDoc_4.1_DotNetLibd (in SPSignDoc_4.1_DotNetLibd.dll) Version: 1.0.5882.21462
Syntaxpublic void fitRect(
int width,
int height
)
Public Sub fitRect (
width As Integer,
height As Integer
)
public:
void fitRect(
int width,
int height
)
member fitRect :
width : int *
height : int -> unit
Parameters
- width
- Type: SystemInt32
The desired width of the rendered image. - height
- Type: SystemInt32
The desired height of the rendered image.
Return Value
Type:
true if successful, false if the specified width or height
is invalid.
See Also