10-25-2011 02:53 PM
There is a TreeBrowserWV object under under the .net object NationalInstruments.Veristand.SystemstorageUI.WinFormWrapper. One property is the Display Filter (see below). Where can I find the doc detailing the filter list ? Thx.
Laurent
Solved! Go to Solution.
10-25-2011 04:09 PM
This control is used internally in NI VeriStand and is not publically documented. It is not currently intended to be used in custom applications.
The display filter property controls what types of channels are shown in the tree browser.
R: Readable channels
W: Writable channels
RW: Readable and writable
VOLT: Scalable channels, usually HW I/O
FAULT: Faultable channels
ALL: Any channel
CUSTOM: Used in conjunction with a custom filter, such as a compound filter that mixes readable and faultable.
VIS: Visible. Not hidden by the VeriStand Project
10-25-2011 04:11 PM
thx. Your description will do.
L.
04-19-2012 03:53 PM
Is there a way to just show the Visable readable channels and the Alias channels?
04-19-2012 04:06 PM
You can do many powerful things by playing with the Custom filter type. If you select K_CUSTOM as the filter type, then you can supply a custom filter composed of many sub-conditions to help select the type of items you want showed.
Attached is an example you can play with that creates a custom filter type similar to the one you described.
04-19-2012 04:09 PM
Thanks for the information and the quick response.