Click or drag to resize
STSignatureSaveAsFile Method (String, Byte, Byte, Byte, Byte)Scriptel Corporation
Warning: This API is deprecated, please consider using the new version located here: http://scriptel.com/developers/proscript/net-library/
Saves the signature as a .sig file with the specified color. This allows the signature to be loaded from the file later.

Namespace: Scriptel.STSeries
Assembly: STSeries (in STSeries.dll) Version: 2.5.0.454 (2.5.0.454)
Syntax
public void SaveAsFile(
	string filePathName,
	byte A,
	byte R,
	byte G,
	byte B
)

Parameters

filePathName
Type: SystemString
The directory path and file name of the .sig file to which the signature is to be saved
A
Type: SystemByte
The alpha value
R
Type: SystemByte
The red value
G
Type: SystemByte
The green value
B
Type: SystemByte
The blue value
Exceptions
ExceptionCondition
UnauthorizedAccessExceptionif the caller does not have the required permission
ArgumentExceptionif the path is a zero-length string, contains only white space, or contains one or more invalid characters
ArgumentNullExceptionif the path is null
PathTooLongException The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters.
DirectoryNotFoundExceptionif the specified path is invalid (for example, it is on an unmapped drive)
NotSupportedExceptionif the path is in an invalid format.
IOExceptionif the file cannot be saved
See Also