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 13521 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 13637 of file pcbnew.py.

Member Function Documentation

◆ __bool__()

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

Definition at line 13537 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 13560 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 13556 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 13567 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 13545 of file pcbnew.py.

◆ __iter__()

pcbnew.PCB_FIELDS.__iter__ ( self)

Definition at line 13530 of file pcbnew.py.

◆ __len__()

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

Definition at line 13541 of file pcbnew.py.

◆ __nonzero__()

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

Definition at line 13533 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 13574 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 13549 of file pcbnew.py.

◆ append()

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

Definition at line 13586 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 13658 of file pcbnew.py.

◆ back()

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

Definition at line 13654 of file pcbnew.py.

◆ begin()

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

Definition at line 13602 of file pcbnew.py.

◆ clear()

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

Definition at line 13618 of file pcbnew.py.

◆ empty()

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

Definition at line 13590 of file pcbnew.py.

◆ end()

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

Definition at line 13606 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 13630 of file pcbnew.py.

◆ front()

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

Definition at line 13650 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 13622 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 13669 of file pcbnew.py.

◆ iterator()

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

Definition at line 13527 of file pcbnew.py.

◆ pop()

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

Definition at line 13582 of file pcbnew.py.

◆ pop_back()

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

Definition at line 13626 of file pcbnew.py.

◆ pop_front()

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

Definition at line 13676 of file pcbnew.py.

◆ push_back()

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

Definition at line 13646 of file pcbnew.py.

◆ push_front()

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

Definition at line 13680 of file pcbnew.py.

◆ rbegin()

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

Definition at line 13610 of file pcbnew.py.

◆ rend()

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

Definition at line 13614 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 13662 of file pcbnew.py.

◆ size()

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

Definition at line 13594 of file pcbnew.py.

◆ swap()

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

Definition at line 13598 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 13524 of file pcbnew.py.


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