MCPcopy Create free account
hub / github.com/Predelnik/DSpellCheck / get_point_x_from_position

Method get_point_x_from_position

src/npp/NppInterface.cpp:169–171  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

167int NppInterface::get_text_height(int line) const { return static_cast<int>(send_msg_to_scintilla(SCI_TEXTHEIGHT, line)); }
168
169int NppInterface::get_point_x_from_position(TextPosition position) const {
170 return static_cast<int>(send_msg_to_scintilla(SCI_POINTXFROMPOSITION, 0, position));
171}
172
173int NppInterface::get_point_y_from_position(TextPosition position) const {
174 return static_cast<int>(send_msg_to_scintilla(SCI_POINTYFROMPOSITION, 0, position));

Callers 2

init_suggestions_boxMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected