Community
style="PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
"dei-feif" wrote in messageI
href="news:6118564@discussion.autodesk.com">news:6118564@discussion.autodesk.com...
think Jeff might be the only one who knows much about using Lisp with Civil
3D. Hey Jeff, you might even be the World's Greatest Expert on that subject!
How does it feel to be "the World's Greatest" at something? 🙂 -- Sinc
http://www.ejsurveying.com http://www.quuxsoft.com
style="PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
"dei-feif" wrote in messageI
href="news:6118564@discussion.autodesk.com">news:6118564@discussion.autodesk.com...
think Jeff might be the only one who knows much about using Lisp with Civil
3D. Hey Jeff, you might even be the World's Greatest Expert on that subject!
How does it feel to be "the World's Greatest" at something? 🙂 -- Sinc
http://www.ejsurveying.com http://www.quuxsoft.com
style="PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
"DavidGarrigues5269" wrote in messageHey
href="news:6118399@discussion.autodesk.com">news:6118399@discussion.autodesk.com...
Everyone, I have created a volume surface and an accompanying elevation table.
I want to extract out the tables information. However, it seems that I cannot
get to the object. Help? (setq ent_source (car (entsel "\nSelect Source
Object: "))) (setq obj_source (vlax-Ename->Vla-Object ent_source)) (setq
obj_analysis (vlax-get obj_source 'SurfaceAnalysis)) (setq
obj_ElevationAnalysis (vlax-get obj_analysis 'ElevationAnalysis)) (setq
obj_ElevationRegions (vlax-get obj_ElevationAnalysis 'ElevationRegions))
(vlax-dump-object obj_ElevationRegions) RETURNS ; Property values: ; Count
(RO) = 10 ; Item (RO) = ...Indexed contents not shown... How do I cycle
through the ten in the list and get their values for each column? I was
thinking (vla-item obj_ElevationRegions ?) but I don't know what to search
for. Help? Thanks dg
style="PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
"DavidGarrigues5269" wrote in messageHey
href="news:6118399@discussion.autodesk.com">news:6118399@discussion.autodesk.com...
Everyone, I have created a volume surface and an accompanying elevation table.
I want to extract out the tables information. However, it seems that I cannot
get to the object. Help? (setq ent_source (car (entsel "\nSelect Source
Object: "))) (setq obj_source (vlax-Ename->Vla-Object ent_source)) (setq
obj_analysis (vlax-get obj_source 'SurfaceAnalysis)) (setq
obj_ElevationAnalysis (vlax-get obj_analysis 'ElevationAnalysis)) (setq
obj_ElevationRegions (vlax-get obj_ElevationAnalysis 'ElevationRegions))
(vlax-dump-object obj_ElevationRegions) RETURNS ; Property values: ; Count
(RO) = 10 ; Item (RO) = ...Indexed contents not shown... How do I cycle
through the ten in the list and get their values for each column? I was
thinking (vla-item obj_ElevationRegions ?) but I don't know what to search
for. Help? Thanks dg
style="PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
"Jeff Mishler" <miffATsonicDOTnet> wrote in message
href="news:6118743@discussion.autodesk.com">news:6118743@discussion.autodesk.com...
I'm not sure why, but in my only drawing that I have a
Volume surface with a Table, I cannot get any C3D properties or methods
to work with the surface. The object returned is just an AcadEntity, even
though the ObjectName clearly says it is a AeccSurfaceTin.
Nonetheless, as Christopher points out, you cannot get the
areas as shown in the tables. Maybe in a future version we will get some more
functionality to the API. Once I figure out why I can't get to the objects
I'll see what else I can do.
style="PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
"DavidGarrigues5269" wrote in messageHey
href="news:6118399@discussion.autodesk.com">news:6118399@discussion.autodesk.com...
Everyone, I have created a volume surface and an accompanying elevation
table. I want to extract out the tables information. However, it seems that
I cannot get to the object. Help? (setq ent_source (car (entsel "\nSelect
Source Object: "))) (setq obj_source (vlax-Ename->Vla-Object ent_source))
(setq obj_analysis (vlax-get obj_source 'SurfaceAnalysis)) (setq
obj_ElevationAnalysis (vlax-get obj_analysis 'ElevationAnalysis)) (setq
obj_ElevationRegions (vlax-get obj_ElevationAnalysis 'ElevationRegions))
(vlax-dump-object obj_ElevationRegions) RETURNS ; Property values: ; Count
(RO) = 10 ; Item (RO) = ...Indexed contents not shown... How do I cycle
through the ten in the list and get their values for each column? I was
thinking (vla-item obj_ElevationRegions ?) but I don't know what to search
for. Help? Thanks dg
style="PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
"Jeff Mishler" <miffATsonicDOTnet> wrote in message
href="news:6118743@discussion.autodesk.com">news:6118743@discussion.autodesk.com...
I'm not sure why, but in my only drawing that I have a
Volume surface with a Table, I cannot get any C3D properties or methods
to work with the surface. The object returned is just an AcadEntity, even
though the ObjectName clearly says it is a AeccSurfaceTin.
Nonetheless, as Christopher points out, you cannot get the
areas as shown in the tables. Maybe in a future version we will get some more
functionality to the API. Once I figure out why I can't get to the objects
I'll see what else I can do.
style="PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
"DavidGarrigues5269" wrote in messageHey
href="news:6118399@discussion.autodesk.com">news:6118399@discussion.autodesk.com...
Everyone, I have created a volume surface and an accompanying elevation
table. I want to extract out the tables information. However, it seems that
I cannot get to the object. Help? (setq ent_source (car (entsel "\nSelect
Source Object: "))) (setq obj_source (vlax-Ename->Vla-Object ent_source))
(setq obj_analysis (vlax-get obj_source 'SurfaceAnalysis)) (setq
obj_ElevationAnalysis (vlax-get obj_analysis 'ElevationAnalysis)) (setq
obj_ElevationRegions (vlax-get obj_ElevationAnalysis 'ElevationRegions))
(vlax-dump-object obj_ElevationRegions) RETURNS ; Property values: ; Count
(RO) = 10 ; Item (RO) = ...Indexed contents not shown... How do I cycle
through the ten in the list and get their values for each column? I was
thinking (vla-item obj_ElevationRegions ?) but I don't know what to search
for. Help? Thanks dg
style="PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
<DavidGarrigues5269> wrote in messageThank
href="news:6118850@discussion.autodesk.com">news:6118850@discussion.autodesk.com...
you for heading me off at the pass. It would have been only a matter of time
before I had to come back and ask how do I get the areas. I don't think my
stomach can to many more Excedrins. 🙂 Thanks guys!
dg
style="PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
<DavidGarrigues5269> wrote in messageThank
href="news:6118850@discussion.autodesk.com">news:6118850@discussion.autodesk.com...
you for heading me off at the pass. It would have been only a matter of time
before I had to come back and ask how do I get the areas. I don't think my
stomach can to many more Excedrins. 🙂 Thanks guys!
dg
style="PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
"wfb" <
href="mailto:wfberry@bellsouth.net">wfberry@bellsouth.net> wrote in
message
href="news:6118913@discussion.autodesk.com">news:6118913@discussion.autodesk.com...
For those that don't know who David is, he is the
number one Civil 3D speaker to EVER teach at AU. Not only is he good, he
is hilarious.
Now I am assuming this is the correct David, how
many David Garrigues's can there be?
size=2>
style="PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
"wfb" <
href="mailto:wfberry@bellsouth.net">wfberry@bellsouth.net> wrote in
message
href="news:6118913@discussion.autodesk.com">news:6118913@discussion.autodesk.com...
For those that don't know who David is, he is the
number one Civil 3D speaker to EVER teach at AU. Not only is he good, he
is hilarious.
Now I am assuming this is the correct David, how
many David Garrigues's can there be?
size=2>
I thought it was great you were such a great speaker until I had to follow you at AU07, then I wished you weren't so good;)
I thought it was great you were such a great speaker until I had to follow you at AU07, then I wished you weren't so good;)
Can't find what you're looking for? Ask the community or share your knowledge.