IMAQ.ImageViewerWindow.WriteToConsole C# (CSharp) Method

WriteToConsole() public method

public WriteToConsole ( string text ) : void
text string
return void
        public void WriteToConsole(string text)
        {
            setRichTextBox(consoleRichTextBox, ">> " + text + "\n");
        }

Usage Example

示例#1
0
        public void StoreImageListWithDialog()
        {
            string filepath = GetSaveDialogFilename();
            string filetext = Path.GetFileName(filepath);

            Directory.CreateDirectory(filepath);
            string filed = filepath + "\\" + filetext;

            StoreImageList(filed);
            imageWindow.WriteToConsole(filed);
        }