Repository URL to install this package:
|
Version:
0.9.10 ▾
|
# coding: utf-8
from __future__ import (
absolute_import,
print_function,
unicode_literals,
)
from pydocx.models import XmlModel, XmlAttribute
class FieldChar(XmlModel):
XML_TAG = 'fldChar'
_char_type = XmlAttribute(name='fldCharType')
@property
def char_type(self):
if not self._char_type:
return
return self._char_type.lower()
def is_type_begin(self):
return self.char_type == 'begin'
def is_type_separate(self):
return self.char_type == 'separate'
def is_type_end(self):
return self.char_type == 'end'