IntelliCAD 11.1 Object Library | |
ImportPlotProperties Method | |
See Also |
- FileName
- The name of the file.
PlotManager Object : ImportPlotProperties Method |
Description
method ImportPlotProperties
Syntax
Visual Basic |
---|
Public Sub ImportPlotProperties( _ ByVal FileName As String _ ) |
Parameters
- FileName
- The name of the file.
Example
Private Sub ImportPlotProps_Example()
' This example exports plot properties to a specified file.
Dim PFname As String
PFname = InputBox("Type a file name")
IntelliCAD.PlotManager.ImportPlotProperties PFname
End Sub