answersLogoWhite

0


Best Answer

line under an object

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Graphics inserted as an inline object in a sentence are treated like a?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

An object of graphic inserted in a document that acts like a character in a sentence?

inline object


What is an object or graphic inserted in a document that acts like a character in a sentence?

inline object


Why would you want to use inline graphics?

If you use inline graphics, you may want to adjust the vertical position.


An image that is inserted as part of a line of text?

Inline graphic


Why would you want to use an inline graphic?

If you use inline graphics, you may want to adjust the vertical position.


When pictures are inserted as an inline object what do the picture become?

the 1st character in the paragraph


What are The most widely used file formats for inline images?

Inline images are most widely stored in one of two formats: GIF (Graphics Interchange Format) or JPEG (Joint Photographic Experts Group).


Should the words inline hockey be capitalized?

No, the words "inline hockey" should not be capitalized unless they are at the beginning of a sentence.


How do you use resistor in a sentence?

I installed a resistor inline with my oil pressure sensor. The resistor in a circuit will usually disperse energy as heat.


Where is the iat sensor located on a 1994 Ford F-150 with the inline 6 motor?

On a 1994 Ford F-150 , 300 cubic inch / 4.9 litre inline six cylinder : I believe the intake air temperature sensor ( air charge temperature sensor ) is inserted into the top plastic cover on the engine air filter


What are memory sockets?

Most motherboards today come with between 2 and 8 sockets for the insertion of memory. These are usually either SIMMs (single inline memory modules) or DIMMs (dual inline memory modules). These can come in different sizes. The motherboard usually labels these sockets "SIMM0" through "SIMM7" or "DIMM1" through "DIMM3", etc. The sockets are almost always filled starting with the lowest numbered socket first. Most Pentium class or higher motherboards require SIMMs to be inserted in pairs, but DIMMs may be inserted individually.


What is the use of INLINE function?

it is the function declared inside the class. It is used for gaining faster speed in execution but it might give back the larger executable fileAn inline function is one that is not called, its code is inserted in the position where you make a call to it. If it is called multiple times from different locations it was be inserted in all locations, increasing the size of all functions its called from but marginally increasing speed.Take this example:inline int AddNumbers(int a,int b){return a+b;}int main(){int x = 2;int y = 3;int answer;answer = AddNumbers(x,y);answer = AddNumbers(answer,y);return 0;}When the program is compiled it would look more like this:int main(){int x = 2;int y = 3;int answer = x+y;answer += y;return 0;}