hi
i want to access the value of "Default Description" (picture attached) programmitically.
any help will be appreciated,
thanks in advance.
Solved! Go to Solution.
hi
i want to access the value of "Default Description" (picture attached) programmitically.
any help will be appreciated,
thanks in advance.
Solved! Go to Solution.
Solved by Jeff_M. Go to Solution.
i'm using c# and vs2019 and C3D2020
i'm using c# and vs2019 and C3D2020
hi @Jeff_M
i don't know how to use it
string s = SettingsCmdCreatePoints.SettingsCmdPointsCreation.DefaultDescription.Value;
gives me error
hi @Jeff_M
i don't know how to use it
string s = SettingsCmdCreatePoints.SettingsCmdPointsCreation.DefaultDescription.Value;
gives me error
using Autodesk.Civil.ApplicationServices;
using Autodesk.Civil.Settings;
var civdoc = CivilApplication.ActiveDocument; var settings = civdoc.Settings.GetSettings<SettingsCmdCreatePoints>(); var s = settings.PointsCreation.DefaultDescription.Value;
using Autodesk.Civil.ApplicationServices;
using Autodesk.Civil.Settings;
var civdoc = CivilApplication.ActiveDocument; var settings = civdoc.Settings.GetSettings<SettingsCmdCreatePoints>(); var s = settings.PointsCreation.DefaultDescription.Value;
Can't find what you're looking for? Ask the community or share your knowledge.