<p>Am 23.08.2017 16:01 schrieb "Anthony Walter" <<a href="mailto:sysrpl@gmail.com">sysrpl@gmail.com</a>>:<br>
 ><br>
> As to what they are useful for, consider the following:<br>
><br>
> type<br>
> Â  // IShellLink is define by Microsoft<br>
> Â  IShellLinkHelper = record helper for IShellLink<br>
> Â  public<br>
> Â  Â  procedure Save(const Target, Description, Link: string);<br>
> Â  end;<br>
><br>
> procedure IShellLinkHelper.Save(const Target, Description, Link: string);<br>
> var<br>
> Â  P: IPersistsFile;<br>
> begin<br>
> Â  SetPath(Target); <br>
> Â  SetDescription(Description);<br>
> Â  if Self is IPersistsFile then<br>
> Â  begin<br>
> Â  Â  P := Self as IPersistsFile;<br>
> Â  Â  P.Save(Link, True);<br>
> Â  end;<br>
> end;<br>
></p>
<p>And I just noticed: it's "type helper" if you want to extend an interface, not "record helper" ;)</p>
<p>Regards,<br>
Sven</p>