litchi 0.0.1

High-performance parser for Microsoft Office, OpenDocument, and Apple iWork file formats with unified API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Control properties element handler

use crate::formula::omml::elements::ElementContext;

/// Handler for control properties elements (ctrlPr)
pub struct CtrlPropsHandler;

impl CtrlPropsHandler {
    pub fn handle_end<'arena>(
        _context: &mut ElementContext<'arena>,
        _parent_context: Option<&mut ElementContext<'arena>>,
        _arena: &'arena bumpalo::Bump,
    ) {
        // Control properties are typically just consumed and not stored
        // They affect the formatting of the parent element
        // For now, we just pass through - this could be extended for specific control properties
    }
}