Exemplo n.º 1
0
        private void assignIssueIdToFinding(XMLSPYPLUGINLib.AuthenticRange xspyElementToEdit)
        {
            object pElementNames = null;

            axAuthentic1.AuthenticView.WholeDocument.Select();
            axAuthentic1.AuthenticView.Selection.GetElementHierarchy(ref pElementNames);
        }
Exemplo n.º 2
0
 /// <summary>
 /// Description: This method is used to add a newline into the specified authentic object
 ///
 /// History:
 ///   11/25/2006 - Mike : Fixed a bug where the cursor wasn't going to the added newline
 /// </summary>
 /// <param name="axTargetAuthenticObject"></param>
 public static void authentic_InsertNewLine(AxXMLSPYPLUGINLib.AxAuthentic axTargetAuthenticObject)
 {
     XMLSPYPLUGINLib.AuthenticRange ar = axTargetAuthenticObject.AuthenticView.Selection;
     authentic_InsertElementInCurrentSelectionPos_spyAuthenticInsertAt(axTargetAuthenticObject, "newline");
     axTargetAuthenticObject.AuthenticView.Selection = ar;
     axTargetAuthenticObject.AuthenticView.Selection =
         axTargetAuthenticObject.AuthenticView.Selection.GotoNextCursorPosition();
 }