protected static object GetValue(int ecReadOnly, UnsafeNativeMethods.ITfProperty property, UnsafeNativeMethods.ITfRange range)
        {
            if (property == null)
            {
                return(null);
            }
            object result;

            property.GetValue(ecReadOnly, range, out result);
            return(result);
        }
예제 #2
0
        protected static Object GetValue(int ecReadOnly, UnsafeNativeMethods.ITfProperty property, UnsafeNativeMethods.ITfRange range)
        {
            if (property == null)
            {
                return(null);
            }

            Object obj;

            property.GetValue(ecReadOnly, range, out obj);

            return(obj);
        }