Beispiel #1
0
		public PeopleView(NSArray persons) : base(new CGRect(0, 0, 700, 700))
		{
			people = (NSArray)persons.Copy();
			// The attributes of the ttext to be printed
			attributes = new NSMutableDictionary();
			NSFont font = NSFont.FromFontName("Monaco", 12.0f);
			lineHeight = font.CapHeight * 1.7f;
			attributes.SetValueForKey(font, NSStringAttributeKey.Font);
		}