AppendAutodesk(IList<Entity>, IEnumerable<Layer>, IDictionary<StringBlock>, IDictionary<StringTextStyle>, IDictionary<StringLineType>, Stream, Stream, versionType, Double, Boolean, Boolean, Boolean) Constructor

NOTE: This member is now obsolete. Use the constructor that accepts the WriteParams instead.

To stream with AutoCAD version and tolerance constructor.
Public Sub New( _ 
ByVal entList As IList(Of Entity), _ 
ByVal layerList As IEnumerable(Of Layer), _ 
ByVal blockDict As IDictionary(Of String, Block), _ 
ByVal textStyleDict As IDictionary(Of String, TextStyle), _ 
ByVal lineTypes As IDictionary(Of String, LineType), _ 
ByVal inputStream As Stream, _ 
ByVal outputStream As Stream, _ 
Optional ByVal version As versionType = versionType.Release12, _ 
Optional ByVal deviation As Double = 0.01, _ 
Optional ByVal aciColors As Boolean = true, _ 
Optional ByVal asciiStream As Boolean = false, _ 
Optional ByVal selectedOnly As Boolean = false _ 
)
This language is not supported or no code example is available.
public AppendAutodesk( 
IList<Entity> entList
IEnumerable<Layer> layerList
IDictionary<string, Block> blockDict
IDictionary<string, TextStyle> textStyleDict
IDictionary<string, LineType> lineTypes
Stream inputStream
Stream outputStream
versionType version = versionType.Release12, 
double deviation = 0.01, 
bool aciColors = true, 
bool asciiStream = false, 
bool selectedOnly = false 
)
This language is not supported or no code example is available.

Parameters

entList
IList<Entity>

The entity list

layerList
IEnumerable<Layer>

The layer list

blockDict
IDictionary<string, Block>

The block dictionary

textStyleDict
IDictionary<string, TextStyle>

The text style dictionary

lineTypes
IDictionary<string, LineType>

The line types dictionary

inputStream
Stream

The input file stream

outputStream
Stream

The output file stream

version
versionType

DWG/DXF file format version

deviation
double

Ellipse and Spline tessellation tolerance. Affects only versionType.Release12 version.

aciColors
bool

Saves the colors as Aci colors (Autocad color index) if possible

asciiStream
bool

If true, writes the stream in DXF ascii format, else in DWG binary format

selectedOnly
bool

If true, only selected entities at root level are written.

Remarks
 
If the file already exists, it will be overwritten.

.NET Framework

Supported in: 4.8

In this article

Definition