# Left Gets the pointer of the left node. ``` CTreeNode*  Left() ``` Return Value Pointer of the left node. # Left Sets the pointer of the left node. ``` void  Left(    CTreeNode*  node      // node    ) ``` Parameters node [in]  New value of the pointer of the left node. Return Value None.