FT_Stroker_Rewind() private method

private FT_Stroker_Rewind ( IntPtr stroker ) : void
stroker System.IntPtr
return void
Esempio n. 1
0
        /// <summary>
        /// Reset a stroker object without changing its attributes. You should call this function before beginning a
        /// new series of calls to <see cref="BeginSubPath"/> or <see cref="EndSubPath"/>.
        /// </summary>
        public void Rewind()
        {
            if (disposed)
            {
                throw new ObjectDisposedException("Stroker", "Cannot access a disposed object.");
            }

            FT.FT_Stroker_Rewind(Reference);
        }
Esempio n. 2
0
 /// <summary>
 /// Reset a stroker object without changing its attributes. You should call this function before beginning a
 /// new series of calls to <see cref="BeginSubPath"/> or <see cref="EndSubPath"/>.
 /// </summary>
 public void Rewind() => FT.FT_Stroker_Rewind(Reference);