Atspi.Text.GetCharacterExtents C# (CSharp) Method

GetCharacterExtents() public method

public GetCharacterExtents ( int offset, int &x, int &y, int &width, int &height, CoordType coordType ) : void
offset int
x int
y int
width int
height int
coordType CoordType
return void
        public void GetCharacterExtents(int offset, out int x, out int y, out int width, out int height, CoordType coordType)
        {
            proxy.GetCharacterExtents (offset, out x, out y, out width, out height, coordType);
        }