Help for this page

Select Code to Download


  1. or download this
    Etk_Bin * bin;
    Etk_Button * button;
    ...
    
    button = ETK_BUTTON(etk_bin_child_get(bin));
    
  2. or download this
    
    $bin->ChildSet($button);
    
    $button = $bin->ChildGet();
    
  3. or download this
    package Etk::Bin;
    
    ...
    
        return child_get($self);
    }