LibreOffice
LibreOffice 24.2 SDK API Reference
PropertyAttribute.idl
Go to the documentation of this file.
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3  * This file is part of the LibreOffice project.
4  *
5  * This Source Code Form is subject to the terms of the Mozilla Public
6  * License, v. 2.0. If a copy of the MPL was not distributed with this
7  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8  *
9  * This file incorporates work covered by the following license notice:
10  *
11  * Licensed to the Apache Software Foundation (ASF) under one or more
12  * contributor license agreements. See the NOTICE file distributed
13  * with this work for additional information regarding copyright
14  * ownership. The ASF licenses this file to you under the Apache
15  * License, Version 2.0 (the "License"); you may not use this file
16  * except in compliance with the License. You may obtain a copy of
17  * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18  */
19 
20 
21  module com { module sun { module star { module beans {
22 
23 
26 published constants PropertyAttribute
27 {
28 
33  const short MAYBEVOID = 1;
34 
35 
40  const short BOUND = 2;
41 
42 
49  const short CONSTRAINED = 4;
50 
51 
54  const short TRANSIENT = 8;
55 
56 
59  const short READONLY = 16;
60 
61 
64  const short MAYBEAMBIGUOUS = 32;
65 
66 
69  const short MAYBEDEFAULT = 64;
70 
71 
75  const short REMOVABLE = 128;
76 
80  const short REMOVEABLE = 128;
81 
92  const short OPTIONAL = 256;
93 };
94 
95 
96 }; }; }; };
97 
98 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
const short MAYBEAMBIGUOUS
indicates that the value of the property can be ambiguous.
Definition: PropertyAttribute.idl:64
const short TRANSIENT
indicates that the value of the property is not persistent.
Definition: PropertyAttribute.idl:54
const short REMOVABLE
indicates that the property can be removed (i.e., by calling XPropertyContainer::removeProperty()).
Definition: PropertyAttribute.idl:75
Definition: Ambiguous.idl:20
const short MAYBEVOID
indicates that a property value can be void.
Definition: PropertyAttribute.idl:33
const short READONLY
indicates that the value of the property is read-only.
Definition: PropertyAttribute.idl:59
const short OPTIONAL
indicates that a property is optional.
Definition: PropertyAttribute.idl:92
const short BOUND
indicates that a PropertyChangeEvent will be fired to all registered XPropertyChangeListeners wheneve...
Definition: PropertyAttribute.idl:40
const short CONSTRAINED
indicates that a PropertyChangeEvent will be fired to all registered XVetoableChangeListeners wheneve...
Definition: PropertyAttribute.idl:49
const short MAYBEDEFAULT
indicates that the property can be set to default.
Definition: PropertyAttribute.idl:69
const short REMOVEABLE
Definition: PropertyAttribute.idl:80