DXFReaderNETControlAddOle2Frame Method
|
Adds a new image to the current drawing as an embedded ole2frame entity.
Namespace:
DXFReaderNET
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax public EntityObject AddOle2Frame(
Image Image,
Vector3 StartPoint,
Vector3 EndPoint,
short ACIColor = 256,
string LayerName = "",
string LineTypeName = ""
)
Public Function AddOle2Frame (
Image As Image,
StartPoint As Vector3,
EndPoint As Vector3,
Optional ACIColor As Short = 256,
Optional LayerName As String = "",
Optional LineTypeName As String = ""
) As EntityObject
public:
EntityObject^ AddOle2Frame(
Image^ Image,
Vector3 StartPoint,
Vector3 EndPoint,
short ACIColor = 256,
String^ LayerName = L"",
String^ LineTypeName = L""
)
member AddOle2Frame :
Image : Image *
StartPoint : Vector3 *
EndPoint : Vector3 *
?ACIColor : int16 *
?LayerName : string *
?LineTypeName : string
(* Defaults:
let _ACIColor = defaultArg ACIColor 256
let _LayerName = defaultArg LayerName ""
let _LineTypeName = defaultArg LineTypeName ""
*)
-> EntityObject
METHOD AddOle2Frame(
Image AS Image,
StartPoint AS Vector3,
EndPoint AS Vector3,
ACIColor AS SHORT := 256,
LayerName AS STRING := "",
LineTypeName AS STRING := ""
) AS EntityObject
Parameters
- Image
- Type: System.DrawingImage
The bitmap image. - StartPoint
- Type: DXFReaderNETVector3
The start position of the image. - EndPoint
- Type: DXFReaderNETVector3
The end position of the image. - 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
Ole2Frame.
Remarks The entity is added to the active layout.
See Also