Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
1 capture
12 Jun 22 - 12 Jun 22
sparklines
Close Help
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
  • Help Room /
avatar image
0
Question by MobinYaqoob · Nov 26, 2015 at 10:56 AM · unity 5uitextunity 2d

Text Component Size is not Adjusting

My Problem is Text Component Size is not Adjusting. For the sake of Understanding :

 void Start()
     {
         goParagraph = new GameObject();
         RectTransform rectOfText = goParagraph.AddComponent<RectTransform>();
 Font myFont=(Font)Resources.Load("Fonts/Karmakooma_copy",typeof(Font));
         Text txtParagraph = goParagraph.AddComponent<Text>();
         txtParagraph.text = "Let"
             + "The quick brown fox jumps over the lazy dog"
             + "The quick brown fox jumps over the lazy dog"
             + "The quick brown fox jumps over the lazy dog"
             + "The quick brown fox jumps over the lazy dog"
             + "The quick brown fox jumps over the lazy dog"
             + "The quick brown fox jumps over the lazy dog"
             + "The quick brown fox jumps over the lazy dog"
             + "The quick brown fox jumps over the lazy dog"
             + "The quick brown fox jumps over the lazy dog"
             + "The quick brown fox jumps over the lazy dog"
             + "The quick brown fox jumps over the lazy dog"
             + "The quick brown fox jumps over the lazy dog"
             + "The quick brown fox jumps over the lazy dog"
             + "The quick brown fox jumps over the lazy dog"
             + "The quick brown fox jumps over the lazy dog"
             + "The quick brown fox jumps over the lazy dog"
             + "The quick brown fox jumps over the lazy dog"
             + "The quick brown fox jumps over the lazy dog"
             + "The quick brown fox jumps over the lazy dog"
             + "The quick brown fox jumps over the lazy dog"
             + "The quick brown fox jumps over the lazy dog"
             + "The quick brown fox jumps over the lazy dog"
             + "The quick brown fox jumps over the lazy dog"
             + "The quick brown fox jumps over the lazy dog"
             + "The quick brown fox jumps over the lazy dog"
             + "The quick brown fox jumps over the lazy dog"
             + "The quick brown fox jumps over the lazy dog"
             + "The quick brown fox jumps over the lazy dog"
             + "The quick brown fox jumps over the lazy dog"
             + "The quick brown fox jumps over the lazy dog"
             + "The quick brown fox jumps over the lazy dog"
             + "The quick brown fox jumps over the lazy dog"
             + "The quick brown fox jumps over the lazy dog"
             + "The quick brown fox jumps over the lazy dog"
             + "The quick brown fox jumps over the lazy dog"
             + "The quick brown fox jumps over the lazy dog"
             + "The quick brown fox jumps over the lazy dog"
             + "The quick brown fox jumps over the lazy dog"
             + "The quick brown fox jumps over the lazy dog"
             + "The quick brown fox jumps over the lazy dog"
             + "The quick brown fox jumps over the lazy dog"
             + "The quick brown fox jumps over the lazy dog"
             + "The quick brown fox jumps over the lazy dog"
             + "The quick brown fox jumps over the lazy dog"
             + "The quick brown fox jumps over the lazy dog"
             + "The quick brown fox jumps over the lazy dog"
             + "The quick brown fox jumps over the lazy dog"
             + "The quick brown fox jumps over the lazy dog"
             + "The quick brown fox jumps over the lazy dog"
             + "The quick brown fox jumps over the lazy dog"
             + "The quick brown fox jumps over the lazy dog"
             + "The quick brown fox jumps over the lazy dog"
             + "The quick brown fox jumps over the lazy dog"
             + "The quick brown fox jumps over the lazy dog"
             + "The quick brown fox jumps over the lazy dog"
             + "The quick brown fox jumps over the lazy dog"
             + "The quick brown fox jumps over the lazy dog"
             + "The quick brown fox jumps over the lazy dog"
             + "The quick brown fox jumps over the lazy dog"
             + "The quick brown fox jumps over the lazy dog"
             + "The quick brown fox jumps over the lazy dog"
             + "The quick brown fox jumps over the lazy dog"
             + "The quick brown fox jumps over the lazy dog"
             + "The quick brown fox jumps over the lazy dog"
             + "The quick brown fox jumps over the lazy dog"
             + "The quick brown fox jumps over the lazy dog"
             + "The quick brown fox jumps over the lazy dog"
             + "The quick brown fox jumps over the lazy dog"
             + "The quick brown fox jumps over the lazy dog"
             + "The quick brown fox jumps over the lazy dog"
             + "The quick brown fox jumps over the lazy dog"
             + "The quick brown fox jumps over the lazy dog"
             + "The quick brown fox jumps over the lazy dog"
             + "The quick brown fox jumps over the lazy dog"
             + "The quick brown fox jumps over the lazy dog"
             + "The quick brown fox jumps over the lazy dog"
             + "The quick brown fox jumps over the lazy dog"
             + "The quick brown fox jumps over the lazy dog";
         txtParagraph.font = myFont;
         goParagraph.transform.SetParent(parent.transform);
         rectOfText.anchoredPosition = new Vector2(0, 0);
 
     }


So it gives the result :

alt text

It takes the Height and Width properties to adjust the size of text block but expecting is it should adjust their height as content bigger like this :

alt text

One thing just for the sake of question i small the font which is not matter for my question like we can set font by c#.

34343.png (21.8 kB)
expect.png (110.1 kB)
Comment
Add comment
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

1 Reply

· Add your reply
  • Sort: 
avatar image
0

Answer by MobinYaqoob · Nov 26, 2015 at 10:58 AM

@willgoldstone One thing i forgot to mention that Horizontal Overflow = OverFlow ,Vertical Overflow = OverFlow Not solving my problem i get the result but the container means the size of Text Component is remains the same just Text overflow to it. i want to adjust the size of Text Component

Comment
Add comment · Show 3 · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users
avatar image MobinYaqoob · Dec 01, 2015 at 10:18 AM 0
Share

For elaborate my Question : I just wanna make a textblock which fits on mobile screen but text in textblock is very very big so i need to make it scroll so user scroll down for reading purpose.but in editor when i make this i change the size (Vectical) of Text Component so it scroll . But my data is com$$anonymous$$g through WWW request so when i make TextComponent by C# it does not change it's Vertical Lenght so it scrolls correctly :) Thank in Advance :)

avatar image MobinYaqoob · Dec 01, 2015 at 10:19 AM 0
Share

@willgoldstone

avatar image MobinYaqoob MobinYaqoob · Dec 09, 2015 at 03:15 PM 0
Share

@willgoldstone i stuck at this point because i am working on a project and wait to do it. i need to return a jason which is a article which i done the content is very large so i need to scroll down to bottom or end of it.

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this Question

Answers Answers and Comments

49 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

Unity 5 - Does anyone know how to scale the text in the UI? 1 Answer

How can I check if there is no free space in the Text component? 1 Answer

One textUI and two colliders that update it 0 Answers

How to hide specific texts in a dialogue box 0 Answers

how to display UI text in every scene with same text inside?? 0 Answers


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges