Hide

SftTabs/DLL 6.5 - Tab Control

Display
Print

AllowSwitch

Determines whether a currently active page can be left and a new page activated.

C++

virtual BOOL CSftTabsPage::AllowSwitch();

Returns

If TRUE is returned, the current page will be deactivated and another page will become active, otherwise the current page (and associated tab) cannot be changed.

Comments

The AllowSwitch function determines whether a currently active page can be left and a new page activated.

The default implementation of this member function returns TRUE after performing automatic data validation and exchange for the page.

An application can override this function to perform additional tests such as input validation, to determine if the page can be left.

Example

C++

BOOL CAttrPage::AllowSwitch()
{
    if (!UpdateData(TRUE))
        return FALSE;

    CSampleDoc* pDoc = GetDocument();
    pDoc->m_bottomMargin = m_BottomMargin;
    pDoc->m_leftMargin = m_LeftMargin;
    pDoc->m_rightMargin = m_RightMargin;
    pDoc->m_topMargin = m_TopMargin;
    return TRUE;
}

See Also C/C++ API | C++ Classes | Notifications


Last Updated 08/13/2020 - (email)
© 2024 Softel vdm, Inc.