AEMManager.AemActions.OpenAuthorPublish C# (CSharp) Method

OpenAuthorPublish() public static method

public static OpenAuthorPublish ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
return void
        public static void OpenAuthorPublish(object sender, EventArgs e)
        {
            AemInstance instance = Program.GetActionInstance(sender);
              if (instance == null) {
            return;
              }
              OpenUrl(instance.UrlWithContextPath, instance);
        }

Usage Example

Example #1
0
 void mNotifyIcon_DoubleClick(object sender, EventArgs e)
 {
     AemActions.OpenAuthorPublish(this, e);
 }