示例#1
0
        public static string GetAttributeTooltip(ImaqdxSessionHandle session, string name)
        {
            Debug.Assert(session != null, "The session parameter cannot be null.");
            Debug.Assert(!session.IsInvalid, "The session parameter must be a valid handle.");
            Debug.Assert(name != null, "The name parameter cannot be null.");

            string tooltip;
            int    status = NiImaqdxDll.IMAQdxGetAttributeTooltipCW(session, name, out tooltip);

            ExceptionBuilder.CheckErrorAndThrow(status);
            return(tooltip == null ? string.Empty : tooltip);
        }