office-gobmx/oovbaapi/ooo/vba/excel/XBorder.idl
Tamas Bunth af3a46d763 oovbaapi: add Borders.TintAndShade Property
As documented at:
https://msdn.microsoft.com/VBA/Excel-VBA/articles/borders-tintandshade-property-excel

A stub for now.

Change-Id: Id422f3585ced7df59112f6757aeef0860bb0210e
Reviewed-on: https://gerrit.libreoffice.org/39381
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Tamás Bunth <btomi96@gmail.com>
2017-06-30 09:35:50 +02:00

48 lines
1.4 KiB
Text

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#ifndef __ooo_vba_excel_XBorder_idl__
#define __ooo_vba_excel_XBorder_idl__
#include <com/sun/star/uno/XInterface.idl>
#include <ooo/vba/XHelperInterface.idl>
module ooo { module vba { module excel {
interface XBorder
{
interface ::ooo::vba::XHelperInterface;
[attribute] any Color;
[attribute] any ColorIndex;
[attribute] any LineStyle;
[attribute] any Weight;
[attribute] any TintAndShade;
};
}; }; };
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */