How to use custom font style In Native App

Hello,

I try to build new app in Tizen and need to add a multi-line text, to which i can give my personal font styles, colors, alignment, etc .
If someone know about this problem please help,
That might be used for short and fixed texts

Code:-

Evas_Object *Title=evas_object_text_add(ad->layout);
evas_object_text_text_set(Title,argv[0]);
evas_object_color_set(Title, 255, 255, 255, 255);
evas_object_text_font_set(Title, FONT"RALEWAY-MEDIUM.TTF", ELM_SCALE_SIZE(16));
elm_object_part_content_set(ad->layout, “Title”, Title);