Adding docs for SKPaint.GetTextPath.

This commit is contained in:
Bill Holmes 2016-04-08 12:09:47 -04:00
Родитель b470adb247
Коммит 92b76679ba
1 изменённых файлов: 104 добавлений и 0 удалений

Просмотреть файл

@ -213,6 +213,110 @@
</remarks>
</Docs>
</Member>
<Member MemberName="GetTextPath">
<MemberSignature Language="C#" Value="public SkiaSharp.SKPath GetTextPath (string text, SkiaSharp.SKPoint[] points);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance class SkiaSharp.SKPath GetTextPath(string text, valuetype SkiaSharp.SKPoint[] points) cil managed" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>1.49.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>SkiaSharp.SKPath</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="text" Type="System.String" />
<Parameter Name="points" Type="SkiaSharp.SKPoint[]" />
</Parameters>
<Docs>
<param name="text">The text to generate an outline for.</param>
<param name="points">The position to use for each glyph in the text.</param>
<summary>Return the path (outline) for the specified text.</summary>
<returns>A <see cref="T:SkiaSharp.SKPath" /> containing the outline of the text.</returns>
<remarks>
<para></para>
</remarks>
</Docs>
</Member>
<Member MemberName="GetTextPath">
<MemberSignature Language="C#" Value="public SkiaSharp.SKPath GetTextPath (IntPtr buffer, IntPtr length, SkiaSharp.SKPoint[] points);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance class SkiaSharp.SKPath GetTextPath(native int buffer, native int length, valuetype SkiaSharp.SKPoint[] points) cil managed" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>1.49.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>SkiaSharp.SKPath</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="buffer" Type="System.IntPtr" />
<Parameter Name="length" Type="System.IntPtr" />
<Parameter Name="points" Type="SkiaSharp.SKPoint[]" />
</Parameters>
<Docs>
<param name="buffer">Contains a pointer to a region holding text encoded using the encoding specified in <see cref="P:SkiaSharp.SKPaint.TextEncoding" /> format.</param>
<param name="length">Number of bytes to read from the <paramref name="buffer." /></param>
<param name="points">The position to use for each glyph in the text.</param>
<summary>Return the path (outline) for the specified text.</summary>
<returns>A <see cref="T:SkiaSharp.SKPath" /> containing the outline of the text.</returns>
<remarks>
<para></para>
</remarks>
</Docs>
</Member>
<Member MemberName="GetTextPath">
<MemberSignature Language="C#" Value="public SkiaSharp.SKPath GetTextPath (string text, float x, float y);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance class SkiaSharp.SKPath GetTextPath(string text, float32 x, float32 y) cil managed" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>1.49.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>SkiaSharp.SKPath</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="text" Type="System.String" />
<Parameter Name="x" Type="System.Single" />
<Parameter Name="y" Type="System.Single" />
</Parameters>
<Docs>
<param name="text">The text to generate an outline for.</param>
<param name="x">The x-coordinate of the first glyph in the text.</param>
<param name="y">The y-coordinate of the first glyph in the text.</param>
<summary>Return the path (outline) for the specified text.</summary>
<returns>A <see cref="T:SkiaSharp.SKPath" /> containing the outline of the text.</returns>
<remarks>
<para></para>
</remarks>
</Docs>
</Member>
<Member MemberName="GetTextPath">
<MemberSignature Language="C#" Value="public SkiaSharp.SKPath GetTextPath (IntPtr buffer, IntPtr length, float x, float y);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance class SkiaSharp.SKPath GetTextPath(native int buffer, native int length, float32 x, float32 y) cil managed" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>1.49.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>SkiaSharp.SKPath</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="buffer" Type="System.IntPtr" />
<Parameter Name="length" Type="System.IntPtr" />
<Parameter Name="x" Type="System.Single" />
<Parameter Name="y" Type="System.Single" />
</Parameters>
<Docs>
<param name="buffer">Contains a pointer to a region holding text encoded using the encoding specified in <see cref="P:SkiaSharp.SKPaint.TextEncoding" /> format.</param>
<param name="length">Number of bytes to read from the <paramref name="buffer." /></param>
<param name="x">The x-coordinate of the first glyph in the text.</param>
<param name="y">The y-coordinate of the first glyph in the text.</param>
<summary>Return the path (outline) for the specified text.</summary>
<returns>A <see cref="T:SkiaSharp.SKPath" /> containing the outline of the text.</returns>
<remarks>
<para></para>
</remarks>
</Docs>
</Member>
<Member MemberName="ImageFilter">
<MemberSignature Language="C#" Value="public SkiaSharp.SKImageFilter ImageFilter { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance class SkiaSharp.SKImageFilter ImageFilter" />