Message 1 of 2
System Variables
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I am sudying the sample code in the 'AutoCAD .NET Developer's Guide'.
'CVPORT' is a system variable. It is called as follows:
Application.GetSystemVariable("CVPORT")
'TileMode' is another system variable which is called as follows:
Application.DocumentManager.MdiActiveDocument.Database.TileMode
Can somebody explain me the difference between the two methods of accessing the system variable?
Also, the logic about which method can be used with which system variable because I found that
Application.DocumentManager.MdiActiveDocument.Database.Cvport
does not seem to work.