ApiExamples.ExFont.RemoveHiddenContentVisitor.VisitShapeStart C# (CSharp) Method

VisitShapeStart() public method

Called when a Shape is encountered in the document.
public VisitShapeStart ( Shape shape ) : VisitorAction
shape Shape
return VisitorAction
            public override VisitorAction VisitShapeStart(Shape shape)
            {
                if (this.isHidden(shape))
                    shape.Remove();

                return VisitorAction.Continue;
            }