Saturday, November 21, 2009
 
 
 Browse Category
» Application
» Arc
» AVI
» Bitmap
» Brush
» Caret
» Character
» Clipboard
» Color
» Compress
» Console
» Cryptographic
» Currency
» Cursor
» Date/Time
» DDE
» Device
» Display
» DLL
» Drives
» Ellipse
» File
» Font
» FTP
» HotKey
» Icon
» ImageList
» Inet
» INI-Files
» Internet
» Joystick
» Keyboard
» Memory
» Menu
» MIDI
» Network
» Objects
» Pen
» Picture
» Polygon
» Ports
» Printer
» Process
» Rectangle
» Registry
» ScrollBar
» Sound
» Strings
» System
» Tape
» Text
» Timer
» Triangle
» Wait
» Window
Search Freeware
Search Links

API Name A-Z  A  B  C  D  E  F  G  H  I  J  K  L  M  N  O  P  Q  R  S  T  U  V  W  X  Y  Z

27 Rectangle API Function

Sort: Most Viewed | Highest Rated | A-Z | Z-A

IntersectRect

IntersectRect creates a rectangle based on the intersecting part of two other rectangles. The rectangular region where the two source rectangles overlap is the intersection rectangle. If one or both of the source rectangles are empty or there is no intersection, the function returns 0 and the lpDest...
Hits: 2380 Rating: IntersectRect has been rated  3.11 by  675 users (3.11) votes 675

IntersectClipRect

The IntersectClipRect function creates a new clipping region from the intersection of the current clipping region and the specified rectangle....
Hits: 1436 Rating: IntersectClipRect has been rated  2.92 by  299 users (2.92) votes 299

DrawText

The DrawText function draws formatted text in the specified rectangle. It formats the text according to the specified method (expanding tabs, justifying characters, breaking lines, and so forth)....
Hits: 2533 Rating: DrawText has been rated  2.96 by  395 users (2.96) votes 395

InvertRect

InvertRect inverts the image inside a rectangular area on a device. The inverted colors are calculated by taking the binary NOT of each pixel's RGB color value inside the rectangle. The function returns a non-zero value if successful, or 0 if an error occured....
Hits: 1612 Rating: InvertRect has been rated  2.94 by  554 users (2.94) votes 554

Rectangle

Rectangle draws a rectangular-shaped box on a graphics-capable device. The rectangle is drawn in the device's current drawing color and is filled using its current filling color and brush, if any. The function returns 0 if an error occured, or 1 if successful. ...
Hits: 2269 Rating: Rectangle has been rated  2.90 by  689 users (2.90) votes 689

RoundRect

RoundRect draws a rectangle with rounded corners on a graphics-capable device. The rounded rectangle is drawn in the device's current drawing color and is filled using its current filling color and brush, if any. The first two (x,y) coordinate pairs specified are the upper-left and lower-right corne...
Hits: 2352 Rating: RoundRect has been rated  2.96 by  497 users (2.96) votes 497

SubtractRect

SubtractRect subtracts a smaller rectangle from a larger one. Rectangle subtraction is defined as follows. The large and small rectangles must intersect completely along one entire side, neither extanding farther along that side than the other. In other words, they must share a common side. If this ...
Hits: 1607 Rating: SubtractRect has been rated  3.05 by  526 users (3.05) votes 526

DrawEdge

The DrawEdge function draws one or more edges of rectangle....
Hits: 1766 Rating: DrawEdge has been rated  2.86 by  540 users (2.86) votes 540

DrawAnimatedRects

The DrawAnimatedRects function draws a wire-frame rectangle and animates it to indicate the opening of an icon or the minimizing or maximizing of a window....
Hits: 1945 Rating: DrawAnimatedRects has been rated  2.98 by  802 users (2.98) votes 802

DrawFrameControl

The DrawFrameControl function draws a frame control of the specified type and style....
Hits: 1720 Rating: DrawFrameControl has been rated  3.09 by  435 users (3.09) votes 435

CopyRect

CopyRect sets one rectangle equal to another. This is done by duplicating all of the source rectangle's member values to the corresponding ones in the target rectangle. This is faster than setting all four values manually in your code. The function returns 0 if an error occured, or 1 if successfu...
Hits: 1333 Rating: CopyRect has been rated  2.92 by  222 users (2.92) votes 222

RECT Structure

RECT-type variables hold a rectangle. This structure defines a rectangle by storing the coordinates of its upper-left and lower-right corners. ...
Hits: 1329 Rating: RECT Structure has been rated  3.30 by  200 users (3.30) votes 200

FillRgn

FillRgn fills the area defined by a region on a device. Instead of using the device's currently selected brush, the region is filled using a brush passed to the function. The boundary of the region is not drawn; only its area is filled. The function returns 0 if an error occured, or a non-zero value...
Hits: 1607 Rating: FillRgn has been rated  2.86 by  224 users (2.86) votes 224

EqualRect

EqualRect determines if two rectangles are equal. Rectangles are considered equal if and only if the upper-left and lower-right corners (the points that define the rectangles) of one rectangle are equal to those of another. The function returns 1 if the two rectangles are equal and 0 if they are u...
Hits: 1281 Rating: EqualRect has been rated  3.08 by  279 users (3.08) votes 279

CreateRectRgn

CreateRectRgn creates a rectangularly-shaped region and provides a handle to it. The rectangle defining the region is specified by passing its upper-left and lower-right corners to the function. Note that the bottom and right edges of the rectangle are not considered to be part of the region. The fu...
Hits: 1657 Rating: CreateRectRgn has been rated  3.09 by  311 users (3.09) votes 311

CreateRectRgnIndirect

CreateRectRgnIndirect creates a rectangularly-shaped region and provides a handle to it. The rectangle defining the region is specified by the rectangle passed to the function. Note that the bottom and right edges of the rectangle are not considered to be part of the region. The function returns a h...
Hits: 1252 Rating: CreateRectRgnIndirect has been rated  2.86 by  227 users (2.86) votes 227

CreateRoundRectRgn

CreateRoundRectRgn creates a rounded rectangular region and provides a handle to it. The region is shaped like a rectangle with rounded corners. The region is specified by the coordinate of a non-rounded rectangle followed by the width and height of the rounded corners. The function returns a handle...
Hits: 2132 Rating: CreateRoundRectRgn has been rated  2.94 by  281 users (2.94) votes 281

FrameRect

FrameRect draws a one-pixel-wide frame around a rectangle on a device using a given brush. This frame is equivalent to what the edge of a filled rectangle (using FillRect) would be. Note that this function uses the brush passed to the function, so it is not necessary to use SelectObject to have the ...
Hits: 1375 Rating: FrameRect has been rated  2.97 by  182 users (2.97) votes 182

FillRect

FillRect fills a rectangular area on a device using the specified brush. The outline of the rectangular area is not drawn, and the bottom and right edges of the given rectangle are not filled in (they are not considered to be part of the interior of the rectangle). Note that this function uses the b...
Hits: 1673 Rating: FillRect has been rated  3.19 by  248 users (3.19) votes 248

GdiGradientFillRect

The GdiGradientFill function fills rectangle and triangle structures....
Hits: 1509 Rating: GdiGradientFillRect has been rated  2.97 by  242 users (2.97) votes 242
Records 1 to 20 of 27







HOME | ARTICLES | MUSIC | DOWNLOADS | LINK DIRECTORY |  GAMES | TEST-QUIZZES | SITEMAP | ABOUT | HELP
Copyright © 2000 - 2007 Ex-designz. All rights reserved. Website Developed By Dexter Zafra of Myasp-net.com
Link to us | Advertisement | Contact us | Privacy Policy | Terms of use | Accessibility