I had drawn a rectangle by adding element to graphics container like the code below:
IGraphicsContainer gc = mxDoc.FocusMap as IGraphicsContainer;
gc.Reset();
IRectangleElement rectangleElement = new RectangleElementClass();
IElement elem = rectangleElement as IElement;
gc.AddElement(elem, 0);
I want to remove the color from the rectangle or set the Transparency by 100, and keep the outline colored as it is.