set method

Pointer<NPatchInfoC> set(
  1. num x,
  2. num y,
  3. num width,
  4. num height,
  5. num left,
  6. num top,
  7. num right,
  8. num bottom,
  9. int layout,
)

Implementation

Pointer<NPatchInfoC> set(
  num x, num y, num width, num height,
  num left, num top, num right, num bottom,
  int layout,
) {
  ref.set(
    x, y, width, height,
    left, top, right, bottom,
    layout,
  );
  return this;
}