AsposeCellsCloud-CellsApi
view release on metacpan or search on metacpan
docs/model/DataSorter.md view on Meta::CPAN
use AsposeCellsCloud::Object::DataSorter;
```
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**CaseSensitive** | **boolean** | Gets and sets whether case sensitive when comparing string. |
**HasHeaders** | **boolean** | Represents whether the range has headers. |
**KeyList** | **ARRAY[SortKey]** | Gets the key list of data sorter. |
**SortLeftToRight** | **boolean** | True means that sorting orientation is from left to right. False means that sorting orientation is from top to bottom. The default value is false. |
**SortAsNumber** | **boolean** | Indicates whether sorting anything that looks like a number. |
**Keys** | **ARRAY[DataSorterKey]** | Gets the key list of data sorter. |
[[Back to Model list]](../DeveloperGuide.md#model-reference)
[[Back to README]](../../README.md)
lib/AsposeCellsCloud/ApiClient.pm view on Meta::CPAN
my ($self, $user_agent) = @_;
$self->{http_user_agent}= $user_agent;
}
# Set timeout
#
# @param integer $seconds Number of seconds before timing out [set to 0 for no timeout]
#
sub set_timeout {
my ($self, $seconds) = @_;
if (!looks_like_number($seconds)) {
croak('Timeout variable must be numeric.');
}
$self->{http_timeout} = $seconds;
}
# @return AccessTokenResponse
#
sub o_auth_post {
my ($self, %args) = @_;
lib/AsposeCellsCloud/Object/DataSorter.pm view on Meta::CPAN
'sort_left_to_right' => {
datatype => 'boolean',
base_name => 'SortLeftToRight',
description => 'True means that sorting orientation is from left to right. False means that sorting orientation is from top to bottom. The default value is false. ',
format => '',
read_only => '',
},
'sort_as_number' => {
datatype => 'boolean',
base_name => 'SortAsNumber',
description => 'Indicates whether sorting anything that looks like a number. ',
format => '',
read_only => '',
},
'keys' => {
datatype => 'ARRAY[DataSorterKey]',
base_name => 'Keys',
description => 'Gets the key list of data sorter. ',
format => '',
read_only => '',
},
( run in 4.970 seconds using v1.01-cache-2.11-cpan-75ffa21a3d4 )