Pinned
Get or set pin state of item (node). If Pinned is True, item will appear fixed (can't be scrolled) at top of Next Inspector control.property Pinned: Boolean read GetPinned write SetPinned default False;Nodes property of TNextInspector6 class provide access to each pinned item via Pinned array property:
Example:
procedure TForm1.Button1Click(Sender: TObject);
var
i: Integer;
begin
for i := 0 to NextInspector61.PinnedCount - 1 do
begin
NextInspector61.Nodes.Pinned[i].Value := '';
end;
end;