Ticket A1030
Visible to All Users

How to access a protected class member

created 21 years ago

Description:
I looked through your code and found that it contains some methods which would be very handy for me. Unfortunately, they are declared as protected. As far as I know I cannot access them from my code or is there a trick?

Answer:
In order to get the value of a protected property (or call a method) you need to create a new class derived from the object's class and then typecast your object to the created class - this is commonly referred to as "cracking a class". i.e., you may use the following code:

Delphi
type TmyType = class protected function DoSomething(A: Integer): Integer; property ResultOfMethodAbove: Integer; end; var A: TmyType; type TmyTypeAccess = class(TmyType); ... var I: Integer; ... I : = TmyTypeAccess(A).DoSomething; OR I : = TmyTypeAccess(A).ResultOfMethodAbove;
Comments (2)
L L
Luis Antonio Gama Moreno 13 years ago

    Is there some article like this focused on C++?
    Thanks

    DevExpress Support Team 13 years ago

      Hello,
      A similar question has been already discussed in our Support Center. Please refer to the Q415124 ticket for the information.

      Disclaimer: The information provided on DevExpress.com and affiliated web properties (including the DevExpress Support Center) is provided "as is" without warranty of any kind. Developer Express Inc disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.

      Confidential Information: Developer Express Inc does not wish to receive, will not act to procure, nor will it solicit, confidential or proprietary materials and information from you through the DevExpress Support Center or its web properties. Any and all materials or information divulged during chats, email communications, online discussions, Support Center tickets, or made available to Developer Express Inc in any manner will be deemed NOT to be confidential by Developer Express Inc. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.