DXFReaderNETControlAddImage Method
|
Adds a new image to the current drawing.
Namespace:
DXFReaderNET
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax public EntityObject AddImage(
string Filename,
Vector3 Position,
double Width,
double Height,
double Rotation = 0,
short Transparency = 50,
short ACIColor = 256,
string LayerName = "",
string LineTypeName = ""
)
Public Function AddImage (
Filename As String,
Position As Vector3,
Width As Double,
Height As Double,
Optional Rotation As Double = 0,
Optional Transparency As Short = 50,
Optional ACIColor As Short = 256,
Optional LayerName As String = "",
Optional LineTypeName As String = ""
) As EntityObject
public:
EntityObject^ AddImage(
String^ Filename,
Vector3 Position,
double Width,
double Height,
double Rotation = 0,
short Transparency = 50,
short ACIColor = 256,
String^ LayerName = L"",
String^ LineTypeName = L""
)
member AddImage :
Filename : string *
Position : Vector3 *
Width : float *
Height : float *
?Rotation : float *
?Transparency : int16 *
?ACIColor : int16 *
?LayerName : string *
?LineTypeName : string
(* Defaults:
let _Rotation = defaultArg Rotation 0
let _Transparency = defaultArg Transparency 50
let _ACIColor = defaultArg ACIColor 256
let _LayerName = defaultArg LayerName ""
let _LineTypeName = defaultArg LineTypeName ""
*)
-> EntityObject
METHOD AddImage(
Filename AS STRING,
Position AS Vector3,
Width AS REAL8,
Height AS REAL8,
Rotation AS REAL8 := 0,
Transparency AS SHORT := 50,
ACIColor AS SHORT := 256,
LayerName AS STRING := "",
LineTypeName AS STRING := ""
) AS EntityObject
Parameters
- Filename
- Type: SystemString
The name of the image file. - Position
- Type: DXFReaderNETVector3
The position of the image. - Width
- Type: SystemDouble
The width of the image. - Height
- Type: SystemDouble
The height of the image. - Rotation (Optional)
- Type: SystemDouble
The rotation in degree of the image about the position point. - Transparency (Optional)
- Type: SystemInt16
Accepted transparency values range from 0 to 90. - ACIColor (Optional)
- Type: SystemInt16
A number for 0 to 256 corresponding to the AutoCAD Color Index (0 = ByBlock; 256 = ByLayer. Default value = 256). - LayerName (Optional)
- Type: SystemString
The layer name. If omitted, or layername doesn't exist, the CurrentLayer will be used. - LineTypeName (Optional)
- Type: SystemString
The linetype name. If omitted, or linetype doesn't exist, the CurrentLineTypeName will be used.
Return Value
Type:
EntityObjectThe new added
Image.
Remarks The entity is added to the active layout.
See Also