FT_Get_TrueType_Engine_Type() приватный Метод

private FT_Get_TrueType_Engine_Type ( IntPtr library ) : EngineType
library System.IntPtr
Результат EngineType
Пример #1
0
        /// <summary>
        /// Return an <see cref="EngineType"/> value to indicate which level of the TrueType virtual machine a given
        /// library instance supports.
        /// </summary>
        /// <returns>A value indicating which level is supported.</returns>
        public EngineType GetTrueTypeEngineType()
        {
            if (disposed)
            {
                throw new ObjectDisposedException("Library", "Cannot access a disposed object.");
            }

            return(FT.FT_Get_TrueType_Engine_Type(Reference));
        }
Пример #2
0
 /// <summary>
 /// Return an <see cref="EngineType"/> value to indicate which level of the TrueType virtual machine a given
 /// library instance supports.
 /// </summary>
 /// <returns>A value indicating which level is supported.</returns>
 public EngineType GetTrueTypeEngineType() => FT.FT_Get_TrueType_Engine_Type(Reference);