MCPcopy Create free account
hub / github.com/CobaltFusion/DebugViewPP / GetGridItemText

Function GetGridItemText

DebugView++/Grid.cpp:14–21  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

12namespace debugviewpp {
13
14std::wstring GetGridItemText(const CPropertyGridCtrl& grid, int iItem, int iSubItem)
15{
16 const int BufSize = 1024;
17 wchar_t buf[BufSize];
18 if (grid.GetItemText(iItem, iSubItem, buf, BufSize))
19 return buf;
20 return L"";
21}
22
23} // namespace debugviewpp
24} // namespace fusion

Callers 3

GetSourceTextMethod · 0.85
GetSourceTypeMethod · 0.85
GetFilterTextMethod · 0.85

Calls 1

GetItemTextMethod · 0.80

Tested by

no test coverage detected