AutoWikiBrowser.CustomModule.guideToolStripMenuItem_Click C# (CSharp) Method

guideToolStripMenuItem_Click() private method

private guideToolStripMenuItem_Click ( object sender, EventArgs e ) : void
sender object
e EventArgs
return void
        private void guideToolStripMenuItem_Click(object sender, EventArgs e)
        {
            MessageBox.Show(@"A module allows you to process the article text using your own .NET code.

            Use the ""Make module"" button to compile and load the code.

            The method ""ProcessArticle"" is called when AWB is applying all its own processes. Do not change the signature of this method.

            The int value ""Namespace"" gives you the key of the namespace, e.g. mainspace is 0 etc., the string ""Summary"" must be set to the message to append to the summary (or can be an empty string), the bool ""Skip"" must be set whether to skip the article or not.

            For more detailed information, click Help -> Manual on the Custom Module window.",
                "Guide", MessageBoxButtons.OK, MessageBoxIcon.Information);
        }