All Elements of Category in view Node

I dont understand why this node is not working for sections.

The Category relates to which element category are you trying to see
and the Views relate to which view specificall you are trying to look in.

Or are you trying to see what Sections are visable in that plan view?

I am trying to see all sections that are visible in view.

Then I would select/filter all the sections that are not in the same sheet of the plan view and then hide them

Are there sections in your active view?

Yes, there are


Is this what you are trying to do?

Easiest with python (use Dynamo Python Primer boilerplate and code below)

view_references = (
    FilteredElementCollector(doc, doc.ActiveView.Id)
    .OfCategory(BuiltInCategory.OST_Viewers)
    .ToElements()
)

OUT = [v.Name for v in view_references]