PrintParameter - further question(s)

  • Since you indicated in an earlier post that PrintParameter in still under construction, I thought this might be a good time to bring this up.

    In WP5, unless I'm doing it incorrectly, this gives a compiler error "Cannot assign to a read-only property":

    Code
    <wpDestRTF>.Memo.RTFData.PrintParameter    := <wpSourceRTF>.Memo.RTFData.PrintParameter;


    Pre-V5, PrintParameter was not a read-only property. Thus, I could use it as an lvalue in an assignment. The following was allowable:

    Code
    <wpDestRTF>.PrintParameter := <wpSourceRTF>.PrintParameter


    When you have completed development of PrintParameter, will the above assignment be valid, or is there a different way to accomplish the same thing?

    diamond