Community
Civil 3D Customization
Welcome to Autodesk’s AutoCAD Civil 3D Forums. Share your knowledge, ask questions, and explore popular AutoCAD Civil 3D Customization topics.
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Creating Section view

3 REPLIES 3
SOLVED
Reply
Message 1 of 4
ebo134
402 Views, 3 Replies

Creating Section view

Hi, everyone

When I created Section View  it gave me an exception of type Text saying that there is incorrect parameter, my code is:

double[] origin = new double[2];

origin[0] = bp.X;

origin[1] = bp.Y;

string strn =""; 

 

AeccSectionViewStyle asvs = g_civil3ddoc.SectionViewStyles[0]

AeccSectionViewBandStyleSet bandstyle = g_civil3ddoc.SectionViewBandStyleSets[0];

foreach (AeccSampleLine asam inslg.SampleLines)

{

   strn ="sv "+asam.Name; 

       asam.SectionViews.Add(strn, "0", origin, asvs, bandstyle);

      origin[0] += 500;

}

while bp is a selected point (point3d type), anyone can help me

 

 

thanks

Tags (1)
3 REPLIES 3
Message 2 of 4
Jeff_M
in reply to: ebo134

Two things, the origin must provide X, Y, and Z values. And the origin must be passed as an (object):

 

double[] origin = new double[3];
origin[0] = bp.X;
origin[1] = bp.Y;
origin[2] = 0.0;
string strn ="";  

AeccSectionViewStyle asvs = g_civil3ddoc.SectionViewStyles[0];
AeccSectionViewBandStyleSet bandstyle = g_civil3ddoc.SectionViewBandStyleSets[0];
foreach (AeccSampleLine asam inslg.SampleLines)
{
   strn ="sv "+asam.Name; 
       asam.SectionViews.Add(strn, "0", (object)origin, asvs, bandstyle);
      origin[0] += 500;
}

 

Jeff_M, also a frequent Swamper
EESignature
Message 3 of 4
ebo134
in reply to: Jeff_M

Thank you so mutch Jeff, you'r the savior.

Message 4 of 4
Jeff_M
in reply to: ebo134

You're welcome. Now if you could mark my post as the solution instead of yours... 🙂

 

If you find a response which answers your question, please be sure to accept the actual post which helped you as the solution. This will help future searchers quickly find answers to their own questions. Thanks!

Jeff_M, also a frequent Swamper
EESignature

Can't find what you're looking for? Ask the community or share your knowledge.

Post to forums  

Rail Community


Autodesk Design & Make Report