03-22-2016
06:17 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
03-22-2016
06:17 AM
Hello,
i need to create a textbox in a sketch at specific coordinates. Is this possible?
Regards,
Marco
Solved! Go to Solution.
03-22-2016
01:21 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
03-22-2016
01:21 PM
Hi Marco,
this sample add a text within a sketch.
Bregs
Rossano Praderi
--------------------------------------
If my post answers your question, please click the "Accept as Solution"
button. This helps everyone find answers more quickly!
---------------
03-23-2016
01:29 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
03-23-2016
01:29 AM
Works fine, thank you! But i have some problems to change the Font Size.
I tried:
Dim oTextBoxes As TextBoxes
Dim oStyle As TextStyle
For Each oTextBox In oTextBoxes
oStyle = oTextBox.Style
oStyle.Font = "Chiller"
oStyle.FontSize = 10
Next
But it says:
Object reference not set to an object instance.
03-23-2016
03:08 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
03-23-2016
03:08 AM
Hi mk92,
I think you have to look for the property FormattedText if you want to override the text size for an specific TextBox.
I believe you may find this post helpful:
I hope it helps!
03-23-2016
04:22 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report