PM_StickyNotesEnabled

Note: This page includes content based on the F1 documentation for Centura development. It may be partially converted to support APF development, but should be regarded to be of uncertain actuality. It is provided as is. Eventually, it should be replaced by documentation available from within Visual Studio.

Const.PM_StickyNotesEnabled

Const.PM_StickyNotesEnabled is sent by the framework to a form window to check if sticky notes should be enabled. By default it is set to TRUE.

Parameters

Name Description
wParam Unused
lParam Unused

Returns

Application should return FALSE if sticky notes should not be enabled for the queried form window, otherwise TRUE.

Example

This example sets sticky notes as disabled.

private void frmAvailabilityPlanning_WindowActions(object sender, WindowActionsEventArgs e)
{
    #region Actions
    switch (e.ActionType)
    {
        case Ifs.Fnd.ApplicationForms.Const.PM_StickyNotesEnabled:
            frmAvailabilityPlanning_OnPM_StickyNotesEnabled(sender, e);
            break;
    }
    #endregion
}
private void frmAvailabilityPlanning_OnPM_StickyNotesEnabled(object sender, WindowActionsEventArgs e)
{
    #region Actions
    e.Handled = true;
    e.Return = false; 
    #endregion
}

Comments

This message cannot be used on table windows.