KiCad Pcbnew Python Scripting
Loading...
Searching...
No Matches
pcbnew.PCB_FIELDS Class Reference
Inheritance diagram for pcbnew.PCB_FIELDS:

Public Member Functions

 iterator (self)
 
 __iter__ (self)
 
 __nonzero__ (self)
 
 __bool__ (self)
 
 __len__ (self)
 
 __getslice__ (self, i, j)
 
 __setslice__ (self, *args)
 
 __delslice__ (self, i, j)
 
 __delitem__ (self, *args)
 
 __getitem__ (self, *args)
 
 __setitem__ (self, *args)
 
 pop (self)
 
 append (self, x)
 
 empty (self)
 
 size (self)
 
 swap (self, v)
 
 begin (self)
 
 end (self)
 
 rbegin (self)
 
 rend (self)
 
 clear (self)
 
 get_allocator (self)
 
 pop_back (self)
 
 erase (self, *args)
 
 __init__ (self, *args)
 
 push_back (self, x)
 
 front (self)
 
 back (self)
 
 assign (self, n, x)
 
 resize (self, *args)
 
 insert (self, *args)
 
 pop_front (self)
 
 push_front (self, x)
 

Properties

 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
 

Detailed Description

Proxy of C++ std::deque< PCB_FIELD * > class.

Definition at line 13507 of file pcbnew.py.

Constructor & Destructor Documentation

◆ __init__()

pcbnew.PCB_FIELDS.__init__ ( self,
* args )
    __init__(PCB_FIELDS self) -> PCB_FIELDS
    __init__(PCB_FIELDS self, PCB_FIELDS other) -> PCB_FIELDS
    __init__(PCB_FIELDS self, std::deque< PCB_FIELD * >::size_type size) -> PCB_FIELDS
    __init__(PCB_FIELDS self, std::deque< PCB_FIELD * >::size_type size, PCB_FIELD value) -> PCB_FIELDS

Definition at line 13623 of file pcbnew.py.

Member Function Documentation

◆ __bool__()

pcbnew.PCB_FIELDS.__bool__ ( self)
__bool__(PCB_FIELDS self) -> bool

Definition at line 13523 of file pcbnew.py.

◆ __delitem__()

pcbnew.PCB_FIELDS.__delitem__ ( self,
* args )
    __delitem__(PCB_FIELDS self, std::deque< PCB_FIELD * >::difference_type i)
    __delitem__(PCB_FIELDS self, SWIGPY_SLICEOBJECT * slice)

Definition at line 13546 of file pcbnew.py.

◆ __delslice__()

pcbnew.PCB_FIELDS.__delslice__ ( self,
i,
j )
__delslice__(PCB_FIELDS self, std::deque< PCB_FIELD * >::difference_type i, std::deque< PCB_FIELD * >::difference_type j)

Definition at line 13542 of file pcbnew.py.

◆ __getitem__()

pcbnew.PCB_FIELDS.__getitem__ ( self,
* args )
    __getitem__(PCB_FIELDS self, SWIGPY_SLICEOBJECT * slice) -> PCB_FIELDS
    __getitem__(PCB_FIELDS self, std::deque< PCB_FIELD * >::difference_type i) -> PCB_FIELD

Definition at line 13553 of file pcbnew.py.

◆ __getslice__()

pcbnew.PCB_FIELDS.__getslice__ ( self,
i,
j )
__getslice__(PCB_FIELDS self, std::deque< PCB_FIELD * >::difference_type i, std::deque< PCB_FIELD * >::difference_type j) -> PCB_FIELDS

Definition at line 13531 of file pcbnew.py.

◆ __iter__()

pcbnew.PCB_FIELDS.__iter__ ( self)

Definition at line 13516 of file pcbnew.py.

◆ __len__()

pcbnew.PCB_FIELDS.__len__ ( self)
__len__(PCB_FIELDS self) -> std::deque< PCB_FIELD * >::size_type

Definition at line 13527 of file pcbnew.py.

◆ __nonzero__()

pcbnew.PCB_FIELDS.__nonzero__ ( self)
__nonzero__(PCB_FIELDS self) -> bool

Definition at line 13519 of file pcbnew.py.

◆ __setitem__()

pcbnew.PCB_FIELDS.__setitem__ ( self,
* args )
    __setitem__(PCB_FIELDS self, SWIGPY_SLICEOBJECT * slice, PCB_FIELDS v)
    __setitem__(PCB_FIELDS self, SWIGPY_SLICEOBJECT * slice)
    __setitem__(PCB_FIELDS self, std::deque< PCB_FIELD * >::difference_type i, PCB_FIELD x)

Definition at line 13560 of file pcbnew.py.

◆ __setslice__()

pcbnew.PCB_FIELDS.__setslice__ ( self,
* args )
    __setslice__(PCB_FIELDS self, std::deque< PCB_FIELD * >::difference_type i, std::deque< PCB_FIELD * >::difference_type j)
    __setslice__(PCB_FIELDS self, std::deque< PCB_FIELD * >::difference_type i, std::deque< PCB_FIELD * >::difference_type j, PCB_FIELDS v)

Definition at line 13535 of file pcbnew.py.

◆ append()

pcbnew.PCB_FIELDS.append ( self,
x )
append(PCB_FIELDS self, PCB_FIELD x)

Definition at line 13572 of file pcbnew.py.

◆ assign()

pcbnew.PCB_FIELDS.assign ( self,
n,
x )
assign(PCB_FIELDS self, std::deque< PCB_FIELD * >::size_type n, PCB_FIELD x)

Definition at line 13644 of file pcbnew.py.

◆ back()

pcbnew.PCB_FIELDS.back ( self)
back(PCB_FIELDS self) -> PCB_FIELD

Definition at line 13640 of file pcbnew.py.

◆ begin()

pcbnew.PCB_FIELDS.begin ( self)
begin(PCB_FIELDS self) -> std::deque< PCB_FIELD * >::iterator

Definition at line 13588 of file pcbnew.py.

◆ clear()

pcbnew.PCB_FIELDS.clear ( self)
clear(PCB_FIELDS self)

Definition at line 13604 of file pcbnew.py.

◆ empty()

pcbnew.PCB_FIELDS.empty ( self)
empty(PCB_FIELDS self) -> bool

Definition at line 13576 of file pcbnew.py.

◆ end()

pcbnew.PCB_FIELDS.end ( self)
end(PCB_FIELDS self) -> std::deque< PCB_FIELD * >::iterator

Definition at line 13592 of file pcbnew.py.

◆ erase()

pcbnew.PCB_FIELDS.erase ( self,
* args )
    erase(PCB_FIELDS self, std::deque< PCB_FIELD * >::iterator pos) -> std::deque< PCB_FIELD * >::iterator
    erase(PCB_FIELDS self, std::deque< PCB_FIELD * >::iterator first, std::deque< PCB_FIELD * >::iterator last) -> std::deque< PCB_FIELD * >::iterator

Definition at line 13616 of file pcbnew.py.

◆ front()

pcbnew.PCB_FIELDS.front ( self)
front(PCB_FIELDS self) -> PCB_FIELD

Definition at line 13636 of file pcbnew.py.

◆ get_allocator()

pcbnew.PCB_FIELDS.get_allocator ( self)
get_allocator(PCB_FIELDS self) -> std::deque< PCB_FIELD * >::allocator_type

Definition at line 13608 of file pcbnew.py.

◆ insert()

pcbnew.PCB_FIELDS.insert ( self,
* args )
    insert(PCB_FIELDS self, std::deque< PCB_FIELD * >::iterator pos, PCB_FIELD x) -> std::deque< PCB_FIELD * >::iterator
    insert(PCB_FIELDS self, std::deque< PCB_FIELD * >::iterator pos, std::deque< PCB_FIELD * >::size_type n, PCB_FIELD x)

Definition at line 13655 of file pcbnew.py.

◆ iterator()

pcbnew.PCB_FIELDS.iterator ( self)
iterator(PCB_FIELDS self) -> SwigPyIterator

Definition at line 13513 of file pcbnew.py.

◆ pop()

pcbnew.PCB_FIELDS.pop ( self)
pop(PCB_FIELDS self) -> PCB_FIELD

Definition at line 13568 of file pcbnew.py.

◆ pop_back()

pcbnew.PCB_FIELDS.pop_back ( self)
pop_back(PCB_FIELDS self)

Definition at line 13612 of file pcbnew.py.

◆ pop_front()

pcbnew.PCB_FIELDS.pop_front ( self)
pop_front(PCB_FIELDS self)

Definition at line 13662 of file pcbnew.py.

◆ push_back()

pcbnew.PCB_FIELDS.push_back ( self,
x )
push_back(PCB_FIELDS self, PCB_FIELD x)

Definition at line 13632 of file pcbnew.py.

◆ push_front()

pcbnew.PCB_FIELDS.push_front ( self,
x )
push_front(PCB_FIELDS self, PCB_FIELD x)

Definition at line 13666 of file pcbnew.py.

◆ rbegin()

pcbnew.PCB_FIELDS.rbegin ( self)
rbegin(PCB_FIELDS self) -> std::deque< PCB_FIELD * >::reverse_iterator

Definition at line 13596 of file pcbnew.py.

◆ rend()

pcbnew.PCB_FIELDS.rend ( self)
rend(PCB_FIELDS self) -> std::deque< PCB_FIELD * >::reverse_iterator

Definition at line 13600 of file pcbnew.py.

◆ resize()

pcbnew.PCB_FIELDS.resize ( self,
* args )
    resize(PCB_FIELDS self, std::deque< PCB_FIELD * >::size_type new_size)
    resize(PCB_FIELDS self, std::deque< PCB_FIELD * >::size_type new_size, PCB_FIELD x)

Definition at line 13648 of file pcbnew.py.

◆ size()

pcbnew.PCB_FIELDS.size ( self)
size(PCB_FIELDS self) -> std::deque< PCB_FIELD * >::size_type

Definition at line 13580 of file pcbnew.py.

◆ swap()

pcbnew.PCB_FIELDS.swap ( self,
v )
swap(PCB_FIELDS self, PCB_FIELDS v)

Definition at line 13584 of file pcbnew.py.

Property Documentation

◆ thisown

pcbnew.PCB_FIELDS.thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
static

Definition at line 13510 of file pcbnew.py.


The documentation for this class was generated from the following file: