Exports the active profile so it can be shared with other users.
Supported platforms: AutoCAD for Windows only; not supported in AutoCAD LT for Windows
VBA:
object.ExportProfile Profile, RegFile
Type: PreferencesProfiles
The object this method applies to.
Access: Input-only
Type: String
The name of the profile to be exported.
Access: Input-only
Type: String
The name of the file the profile will be exported to. The extension of the file should be .arg.
No return value.
No additional remarks.
VBA:
Sub Example_ExportProfile()
' This example exports the active profile to a new name.
Dim preferences As AcadPreferences
Dim currActiveProfile As String
Set preferences = ThisDrawing.Application.preferences
' Retrieve the current ActiveProfile value
currActiveProfile = preferences.Profiles.ActiveProfile
MsgBox "The current ActiveProfile is: " & preferences.Profiles.ActiveProfile, , "ExportProfile Example"
' Export the active profile
preferences.Profiles.ExportProfile currActiveProfile, "TestProfile.arg"
MsgBox "The ActiveProfile has been exported to: TestProfile.arg", , "ExportProfile Example"
End Sub
Visual LISP:
(vl-load-com)
(defun c:Example_ExportProfile()
;; This example exports the active profile to a new name.
(setq acadObj (vlax-get-acad-object))
(setq preferences (vla-get-Preferences acadObj))
;; Retrieve the current ActiveProfile value
(setq currActiveProfile (vla-get-ActiveProfile (vla-get-Profiles preferences)))
(alert (strcat "The current ActiveProfile is: " currActiveProfile))
;; Export the active profile
(vla-ExportProfile (vla-get-Profiles preferences) currActiveProfile "c:\\Temp\\TestProfile.arg")
(alert "The ActiveProfile has been exported to: TestProfile.arg")
)