DXFReaderNETControlAddPDFUnderlay Method
|
Adds a new PDF underlay to the current drawing.
Namespace:
DXFReaderNET
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax public EntityObject AddPDFUnderlay(
string Filename,
Vector3 Position,
double Rotation = 0,
Vector3 Scale = default,
short Transparency = 50,
short ACIColor = 256,
bool Monochrome = false,
string LayerName = "",
string LineTypeName = ""
)
Public Function AddPDFUnderlay (
Filename As String,
Position As Vector3,
Optional Rotation As Double = 0,
Optional Scale As Vector3 = Nothing,
Optional Transparency As Short = 50,
Optional ACIColor As Short = 256,
Optional Monochrome As Boolean = false,
Optional LayerName As String = "",
Optional LineTypeName As String = ""
) As EntityObject
public:
EntityObject^ AddPDFUnderlay(
String^ Filename,
Vector3 Position,
double Rotation = 0,
Vector3 Scale = Vector3(),
short Transparency = 50,
short ACIColor = 256,
bool Monochrome = false,
String^ LayerName = L"",
String^ LineTypeName = L""
)
member AddPDFUnderlay :
Filename : string *
Position : Vector3 *
?Rotation : float *
?Scale : Vector3 *
?Transparency : int16 *
?ACIColor : int16 *
?Monochrome : bool *
?LayerName : string *
?LineTypeName : string
(* Defaults:
let _Rotation = defaultArg Rotation 0
let _Scale = defaultArg Scale new Vector3()
let _Transparency = defaultArg Transparency 50
let _ACIColor = defaultArg ACIColor 256
let _Monochrome = defaultArg Monochrome false
let _LayerName = defaultArg LayerName ""
let _LineTypeName = defaultArg LineTypeName ""
*)
-> EntityObject
METHOD AddPDFUnderlay(
Filename AS STRING,
Position AS Vector3,
Rotation AS REAL8 := 0,
Scale AS Vector3 := new Vector3(),
Transparency AS SHORT := 50,
ACIColor AS SHORT := 256,
Monochrome AS LOGIC := FALSE,
LayerName AS STRING := "",
LineTypeName AS STRING := ""
) AS EntityObject
Parameters
- Filename
- Type: SystemString
The name of the PDF file. - Position
- Type: DXFReaderNETVector3
The position of the PDF underlay. - Rotation (Optional)
- Type: SystemDouble
The rotation in degree of the PDF underlay about the position point. - Scale (Optional)
- Type: DXFReaderNETVector3
A vector with scaling along x, y and z (Default value: [1,1,1]). - 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). - Monochrome (Optional)
- Type: SystemBoolean
If true the PDF file is rendered monochrome. - 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
Underlay.
Remarks The entity is added to the active layout.
See Also