|
XGridGetValue(Double, Double, eXGridResampleMethod, Double, Double, Double, Double) Method
|
데이터 타입이 RGBA, BGRA, ARGB, ABGR 일 경우,
특정 위치에 대한 a, r, g, b 값을 각 데이타 타입 순서대로 Real64데이터 형으로 반환한다.
Namespace: Pixoneer.NXDLAssembly: NXDL (in NXDL.dll) Version: 2.0.3.38
Syntaxpublic bool GetValue(
double Row,
double Col,
eXGridResampleMethod Method,
ref double a,
ref double b,
ref double c,
ref double d
)
Parameters
- Row Double
- [In] Row 좌표.
- Col Double
- [In] Column좌표.
- Method eXGridResampleMethod
- [In] Resample 방법을 설정.
- a Double
- [Out] 해당 Row, Col 위치에서의 r (b, a, a) 값.
- b Double
- [Out] 해당 Row, Col 위치에서의 g (g, r, b) 값.
- c Double
- [Out] 해당 Row, Col 위치에서의 b (r, g, g) 값.
- d Double
- [Out] 해당 Row, Col 위치에서의 a (a, b, r) 값.
Return Value
Boolean 특정 위치에 값이 있는 경우 true를, 아니면 false를 리턴
See Also