Thursday, May 23, 2013
 
 
 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: 5687 Rating: IntersectRect has been rated  3.48 by  1565 users (3.48) votes 1565

IntersectClipRect

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

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: 7842 Rating: DrawText has been rated  3.43 by  1237 users (3.43) votes 1237

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: 3792 Rating: InvertRect has been rated  2.63 by  1066 users (2.63) votes 1066

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: 5756 Rating: Rectangle has been rated  2.67 by  1063 users (2.67) votes 1063

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: 5997 Rating: RoundRect has been rated  3.41 by  1609 users (3.41) votes 1609

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: 3393 Rating: SubtractRect has been rated  2.53 by  1037 users (2.53) votes 1037

DrawEdge

The DrawEdge function draws one or more edges of rectangle....
Hits: 4622 Rating: DrawEdge has been rated  2.14 by  1617 users (2.14) votes 1617

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: 4143 Rating: DrawAnimatedRects has been rated  3.34 by  2506 users (3.34) votes 2506

DrawFrameControl

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

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: 3244 Rating: CopyRect has been rated  3.13 by  700 users (3.13) votes 700

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: 3936 Rating: RECT Structure has been rated  2.75 by  1890 users (2.75) votes 1890

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: 4561 Rating: FillRgn has been rated  2.58 by  2037 users (2.58) votes 2037

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: 2627 Rating: EqualRect has been rated  3.12 by  601 users (3.12) votes 601

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: 4719 Rating: CreateRectRgn has been rated  3.32 by  1140 users (3.32) votes 1140

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: 3203 Rating: CreateRectRgnIndirect has been rated  3.52 by  804 users (3.52) votes 804

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: 5495 Rating: CreateRoundRectRgn has been rated  3.02 by  766 users (3.02) votes 766

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: 3872 Rating: FrameRect has been rated  3.43 by  877 users (3.43) votes 877

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: 5060 Rating: FillRect has been rated  2.88 by  816 users (2.88) votes 816

GdiGradientFillRect

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







HOME | MUSIC | DOWNLOADS |  GAMES | TEST-QUIZZES | SITEMAP | ABOUT | HELP
Copyright © 2000 - 2013 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