How to change font and font size in scrollable text view in xcode? - text

How can I change the font and font size of my text in a scrollable text view in xCode? Will this require code or can I do it only in Interface Builder?

3 years late but still might help someone :)
If you want to edit the font from storyboard:
Change the text type from Plain to Attributed.
Then you have font options, If you want more mark the text then right click and you'll have more options.

Related

How to change project tree side menu font size in JetBrains IDE

Is there any way to change the font size on the sidebar/project tree?
I have tried the default font size and theme font size and any font size I could find, but those only change the text editor or console or tab title...
I googled "intellij idea project view font" and came across this post that provided this answer which worked for me.
Appearance & Behavior > Appearance > Use custom font

How Do I Increase the Search Text in my Navigation

I am using Bigcommerce and their them Corner Stone.
How do I increase the size of the "SEARCH" text font?
I attached a screen shot image with a blue circle showing where the "search" text is.
Screen Shot
Thank you
Depending on your theme, you may be able to make this change by navigating to Storefront > My Theme in your back office.
However, it's likely that the font size for that one component is the same for the rest of them; in that case, you may have to make manual changes to the CSS stylesheets by editing your theme files.

change background colour of notepad++ editor

I knew that colour can be set through
Settings->Style Configurator
but when the line that I am editing has a different font and background colour which I don't know how to set.
Also when I am selecting an block of code, I can't control the colour of the selection.
Basically I just want to set the editor to have the same color as the typical console, green on black background (which is friendly to eyes, not straining).
Is it possible to customise the color in the notepad++ editor ?
Or anyone knows of an editor that can meet this requirement ?
Thanks
For me it works fine to do the following:
Go to "Settings" Menu and choose "Style Configurator".
There you choose "Global Styles" (language list) and "Default Style" (style list) and set the colors you want.
You can also try to use the "Global override" style and check the different checkboxes.
In Notepad++ there is quick option without change color setting. In Notepad++ have many themes with different color option.
Notepad++ has many themes which you can select in a dropdown box in the Style Configurator window. Many of these themes (e.g. Bespin, Black board, Twilight) have dark background and different colors for different kinds of text for programming languages.
After Click “Save & Close” Button then Background and Font Color will change, like in the below image.
more information click here

how to set hint text size and font in j2me using lwuit

i am applying bitmap font to textfield and its working fine but textfield hint text size is not set as per i have applied font created using resource editor.please help me here how to set text filed hint text size?
i am using this code
emailtext.setHint("Email Address");
Style styleTextfield=new Style();
styleTextfield.setFont(font_textfield);
styleTextfield.setFgColor(0x808080);
emailtext.setSelectedStyle(styleTextfield);
emailtext.setUnselectedStyle(styleTextfield);
emailtext.setPressedStyle(styleTextfield);
If you are using some .res file to customize your UI, the UIID to change the TextField's Hint text value is TextHint. Modify the font there, using the Resource editor, and you will change the TextField's hint style.
What you want is to set the font of the unselected style of the TextField to be separate from the selected and pressed style :
txtField.getUnselectedStyle().setFont(myHintFont);

LWUIT bitmap font

I'm Developing a small application in one of the classes i'm using two buttons , I have used bitmap fonts for all the components used in application (using Resource Editor) for both English and Persian language. Now I want in result of clicking button "small font" size of all component's fonts become smaller and in result of clicking button "large font" fonts get updated to larger size.
how can I do this , I mean how can I change size of bitmap font dynamically.
thanks for your support in advance
You need to assign the "pressed" style of the button to the desired font.

Resources