コード例 #1
0
ファイル: UIFont.cs プロジェクト: tangyiyong/xamarin-macios
        public static UIFont FromDescriptor(UIFontDescriptor descriptor, nfloat pointSize)
        {
            var ptr = _FromDescriptor(descriptor, pointSize);

            return(ptr == IntPtr.Zero ? null : new UIFont(ptr));
        }
コード例 #2
0
 public static UIFont FromDescriptor(UIFontDescriptor descriptor, nfloat pointSize)
 {
     var ptr = _FromDescriptor (descriptor, pointSize);
     return ptr == IntPtr.Zero ? null : new UIFont (ptr);
 }