1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use crate::{
    InterpResult,
    TkInstance,
    Widget,
};

impl<Inst:TkInstance> Widget<Inst> {
    pub fn lower( &self ) -> InterpResult<()> {
        self.tk().run(( "lower", self.path ))
    }

    pub fn lower_below( &self, below_this: &Self ) -> InterpResult<()> {
        self.tk().run(( "lower", self.path, below_this.path ))
    }
}