AEMManager.AemActions.OpenAuthorPublish C# (CSharp) 메소드

OpenAuthorPublish() 공개 정적인 메소드

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

Usage Example

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