示例#1
0
 public CGRect GetBounds(CTLineBoundsOptions options)
 {
     return(CTLineGetBoundsWithOptions(handle, (nuint)(ulong)options));
 }
示例#2
0
 static extern RectangleF CTLineGetBoundsWithOptions(IntPtr line, CTLineBoundsOptions options);
示例#3
0
 public RectangleF GetBounds(CTLineBoundsOptions options)
 {
     return(CTLineGetBoundsWithOptions(Handle, options));
 }
示例#4
0
 public CGRect GetBounds(CTLineBoundsOptions options)
 {
     return(CTLineGetBoundsWithOptions(handle, options));
 }
示例#5
0
 static extern CGRect CTLineGetBoundsWithOptions(IntPtr line, CTLineBoundsOptions options);
示例#6
0
文件: CTLine.cs 项目: polipo/maccore
		public RectangleF GetBounds (CTLineBoundsOptions options)
		{
			return CTLineGetBoundsWithOptions (Handle, options);
		}
示例#7
0
文件: CTLine.cs 项目: polipo/maccore
		static extern RectangleF CTLineGetBoundsWithOptions (IntPtr line, CTLineBoundsOptions options);
示例#8
0
 public CGRect GetBounds(CTLineBoundsOptions options)
 {
     return CTLineGetBoundsWithOptions (handle, (nuint) (ulong) options);
 }