LibreOffice
LibreOffice 7.4 SDK API Reference
TextSortDescriptor.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#ifndef __com_sun_star_text_TextSortDescriptor_idl__
20#define __com_sun_star_text_TextSortDescriptor_idl__
21
23
24
25
26 module com { module sun { module star { module text {
27
32published service TextSortDescriptor
33{
35
38 [property] char Delimiter;
39
42 [property] boolean IsSortInTable;
43
46 [property] long SortRowOrColumnNo0;
47
51 [property] boolean IsSortNumeric0;
52
56 [property] boolean IsSortAscending0;
57
60 [property] long SortRowOrColumnNo1;
61
65 [property] boolean IsSortNumeric1;
66
70 [property] boolean IsSortAscending1;
71
74 [property] long SortRowOrColumnNo2;
75
79 [property] boolean IsSortNumeric2;
80
84 [property] boolean IsSortAscending2;
85
86};
87
88
89}; }; }; };
90
91#endif
92
93/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
Definition: Ambiguous.idl:22
describes sort criteria for sorting text.
Definition: TextSortDescriptor.idl:33
boolean IsSortNumeric1
determines if the sorting in the second search key is done in numeric or alphanumeric order.
Definition: TextSortDescriptor.idl:65
boolean IsSortInTable
determines if the content of a table is to be sorted.
Definition: TextSortDescriptor.idl:42
long SortRowOrColumnNo0
contains the row or column index used in the first search key.
Definition: TextSortDescriptor.idl:46
long SortRowOrColumnNo1
contains the row or column index used in the second search key.
Definition: TextSortDescriptor.idl:60
long SortRowOrColumnNo2
contains the row or column index used in the third search key.
Definition: TextSortDescriptor.idl:74
boolean IsSortNumeric2
determines if the sorting in the third search key is done in numeric or alphanumeric order.
Definition: TextSortDescriptor.idl:79
boolean IsSortNumeric0
determines if the sorting in the first search key is done numeric or alphanumeric order.
Definition: TextSortDescriptor.idl:51
boolean IsSortAscending2
determines if the sorting in the third search key is done in ascending or descending order.
Definition: TextSortDescriptor.idl:84
char Delimiter
contains the character that marks the separation of columns.
Definition: TextSortDescriptor.idl:34
boolean IsSortAscending0
determines if the sorting in the first search key is done in ascending or descending order.
Definition: TextSortDescriptor.idl:56
boolean IsSortAscending1
determines if the sorting in the second search key is done in ascending or descending order.
Definition: TextSortDescriptor.idl:70
specifies the properties which can be used to describe a sort order applied to an XSortable.
Definition: SortDescriptor.idl:38