How to get mobile scrollbar width?

How do you get length/width from HTML file in Java Applet?

  • Example: Java File- display.drawRect((widthSize, lengthSize, 50, 50); HTML File- <applet code="Program.class" width="300" height="300"> What is the method to get the width and length, without having to type 300?

  • Answer:

    Applets and JApplets (Swing variant) both descend from java.awt.Component and thus inherit the getWidth() and getHeight() methods. In fact, the applet tag values are used to initialize the size during the applet initialization. Thus any time afterwards you should be able to get the actual size via those two methods.

Unknown at Yahoo! Answers Visit the source

Was this solution helpful to you?

Related Q & A:

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.