i am using the Windows Ribbon Framework, and am attempting to get the height of the ribbon after it is created. This is done using the IUIRibbon.GetHeight method.

i am asking for the ribbon's height during OnViewChanged callback, with the UI_VIEWVERB_CREATE verb:

function TfrmTicketDetail.OnViewChanged(viewId: SYSUINT; typeID: UI_VIEWTYPE; 
      const view: IUnknown; verb: UI_VIEWVERB; uReasonCode: SYSINT): HResult;
var
    cy: SYSINT;
begin
    Result := E_NOTIMPL;

    if viewID <> 0 then Exit; //viewID: The ID for the view. Only a value of zero is valid.  --msdn
    if typeID <> UI_VIEWTYPE_RIBBON then Exit; //typeID: The only declared typeID is UI_VIEWTYPE_RIBBON  --msdn

    //there are only 4 verbs: create, destroy, size, and error    
    case verb of 
    UI_VIEWVERB_CREATE:
       begin
          if Succeeded((view as IUIRibbon).GetHeight(cy)) then
          begin
              //cy is always returning zero during UI_VIEWVERB_CREATE
              SetRibbonHeight(cy); 
          end;
          Result := S_OK;
       end;
    UI_VIEWVERB_SIZE:
       begin
          if Succeeded((view as IUIRibbon).GetHeight(cy)) then
          begin
             //and yet calling GetHeight during UI_VIEWVERB_SIZE works fine
             SetRibbonHeight(cy);
          end;
          Result := S_OK;
       end;
   ...
end;
link|improve this question

73% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.