Message 1 of 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello
how to Convert ft to Meters API Result?
public void areaFace()
{
UIDocument uidoc= this.ActiveUIDocument;
Document doc = uidoc.Document;
Reference selRef= uidoc.Selection.PickObject(ObjectType.Face);
Element e=doc.GetElement(selRef);
GeometryObject geObj=e.GetGeometryObjectFromReference(selRef);
Face face=geObj as Face;
TaskDialog.Show("Area Face" ,e.Name+Environment.NewLine+face.Area);
}
Please use " Accept as Solution", and give kudos as appropriate to further enhance these forums. Thank you!
Solved! Go to Solution.