RegisterProperty() public method

public RegisterProperty ( int propertyId, object value ) : void
propertyId int
value object
return void
Esempio n. 1
0
        private static ConfigurableVsInfoBarHost RegisterFrameInfoBarHost(ConfigurableVsWindowFrame frame)
        {
            var host = new ConfigurableVsInfoBarHost();

            frame.RegisterProperty((int)__VSFPROPID7.VSFPROPID_InfoBarHost, host);
            return(host);
        }
 private static ConfigurableVsInfoBarHost RegisterFrameInfoBarHost(ConfigurableVsWindowFrame frame)
 {
     var host = new ConfigurableVsInfoBarHost();
     frame.RegisterProperty((int)__VSFPROPID7.VSFPROPID_InfoBarHost, host);
     return host;
 }