Appearance Example for C++ 5.0 and later

This example toggles the Appearance property.

void CTutorDlg::OnButton1() 
{
   if (m_LEADRasterView1.GetAppearance() == RASTERVIEW_APPEARANCE_FLAT)
      m_LEADRasterView1.SetAppearance(RASTERVIEW_APPEARANCE_THREED);
   else
      m_LEADRasterView1.SetAppearance(RASTERVIEW_APPEARANCE_FLAT);
}