zCane75:
BCOM.ElementEnumerator ee = s_comApp.ActiveDesignFile.Fence.GetContents(false, true);
That won't help you, because what it does is find those elements enclosed by the fence. Some elements (e.g. TextElement) don't have an area. For those elements that do have an area, there's no relationship between the sum of their areas and the area enclosed by the fence.
Follow Jan's advice to convert the fence to a closed element, then take the area of that element.