FillPattern.ExportToPAT
Description:
Export a list of FillPatterns to an AutoCAD PAT file.
Export a list of FillPatterns to an AutoCAD PAT file.
Remarks:
The built-in Solid Fill pattern cannot be expressed in this format.
The PAT file format is ASCII based. FillPatterns with names that contain non-ASCII characters will be exported as 'Pattern_###'. The original name is exported in the description field of the PAT format, encoded as UTF-8.
public static bool ExportToPAT(
IList<FillPattern> fillPatterns,
string filename
)
-
IList<FillPattern>fillPatternsA list of FillPatterns to export.
-
StringfilenameThe full path of the file to export to.
Return Value
Boolean
True if all patterns were exported successfully,
False if export of any pattern failed.
-
filename is an empty string. -or- fillPatterns is empty. -or- fillPatterns contains the solid fill pattern.
-
A non-optional argument was null
-
filename is pointing to a folder that already exists and cannot be deleted.
-
The destination file name includes one or more invalid characters.