Asmex.ObjViewer.ObjViewer.ReadNode C# (CSharp) Method

ReadNode() public method

public ReadNode ( object obj, string title, string subtitle ) : void
obj object
title string
subtitle string
return void
        public void ReadNode(object obj, string title, string subtitle)
        {
            Clear();

            if (obj == null)
            {
                return;
            }

            lblName.Text = subtitle;

            lblKind.Text = title;

            ShowObjectProps(obj);
        }