DayZ 1.27
DayZ Explorer by KGB
 
Загрузка...
Поиск...
Не найдено

◆ Remove()

void ScriptedWidgetEventHandler::Remove ( int index)
inlineprivate

См. определение в файле ContextMenu.c строка 213

214 {
215 if (index < m_commands.Count())
216 {
217 m_commands.RemoveOrdered(index);
218 ButtonWidget menu_button = ButtonWidget.Cast( m_context_menu_root_widget.FindAnyWidget( String( "Button" + ( index + 1 ).ToString() ) ) );
219 menu_button.Show( false );
220 menu_button.SetText( "" );
221 m_count--;
222 }
223 }
proto string ToString()
Widget m_context_menu_root_widget
Определения ContextMenu.c:6
int m_count
Определения ContextMenu.c:10
ref array< ref CallQueueContext > m_commands
Определения ContextMenu.c:8
string String(string s)
Helper for passing string expression to functions with void parameter. Example: Print(String("Hello "...
Определения EnScript.c:339

Перекрестные ссылки m_commands, m_context_menu_root_widget, m_count, String() и ToString().