17cf00d98SAndrew Rist/************************************************************** 2cdf0e10cSrcweir * 37cf00d98SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one 47cf00d98SAndrew Rist * or more contributor license agreements. See the NOTICE file 57cf00d98SAndrew Rist * distributed with this work for additional information 67cf00d98SAndrew Rist * regarding copyright ownership. The ASF licenses this file 77cf00d98SAndrew Rist * to you under the Apache License, Version 2.0 (the 87cf00d98SAndrew Rist * "License"); you may not use this file except in compliance 97cf00d98SAndrew Rist * with the License. You may obtain a copy of the License at 107cf00d98SAndrew Rist * 117cf00d98SAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0 127cf00d98SAndrew Rist * 137cf00d98SAndrew Rist * Unless required by applicable law or agreed to in writing, 147cf00d98SAndrew Rist * software distributed under the License is distributed on an 157cf00d98SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 167cf00d98SAndrew Rist * KIND, either express or implied. See the License for the 177cf00d98SAndrew Rist * specific language governing permissions and limitations 187cf00d98SAndrew Rist * under the License. 197cf00d98SAndrew Rist * 207cf00d98SAndrew Rist *************************************************************/ 217cf00d98SAndrew Rist 22*b63233d8Sdamjanmodule ooo { module vba { module msforms { 23*b63233d8Sdamjan constants fmShowListWhen { 24*b63233d8Sdamjan const long fmShowListWhenAlways = 3; 25*b63233d8Sdamjan const long fmShowListWhenButton = 1; 26*b63233d8Sdamjan const long fmShowListWhenFocus = 2; 27*b63233d8Sdamjan const long fmShowListWhenNever = 0; 28*b63233d8Sdamjan }; 29*b63233d8Sdamjan}; }; }; 30