|
double | get_OffsetX () override |
| Returns a distance from left side of a table to left side of a cell. Read-only double. More...
|
|
double | get_OffsetY () override |
| Returns a distance from top side of a table to top side of a cell. Read-only double. More...
|
|
int32_t | get_FirstRowIndex () override |
| Returns an index of first row, covered by the cell. Read-only int32_t. More...
|
|
int32_t | get_FirstColumnIndex () override |
| Returns an index of first column, covered by the cell. Read-only int32_t. More...
|
|
double | get_Width () override |
| Returns the width of the cell. Read-only double. More...
|
|
double | get_Height () override |
| Returns the height of the cell. Read-only double. More...
|
|
double | get_MinimalHeight () override |
| Returns the minimum height of a cell. This is a sum of minimal heights of all rows cowered by the cell. Read-only double. More...
|
|
double | get_MarginLeft () override |
| Returns the left margin in a TextFrame. Read double. More...
|
|
void | set_MarginLeft (double value) override |
| Sets the left margin in a TextFrame. Write double. More...
|
|
double | get_MarginRight () override |
| Returns the right margin in a TextFrame. Read double. More...
|
|
void | set_MarginRight (double value) override |
| Sets the right margin in a TextFrame. Write double. More...
|
|
double | get_MarginTop () override |
| Returns the top margin in a TextFrame. Read double. More...
|
|
void | set_MarginTop (double value) override |
| Sets the top margin in a TextFrame. Write double. More...
|
|
double | get_MarginBottom () override |
| Returns the bottom margin in a TextFrame. Read double. More...
|
|
void | set_MarginBottom (double value) override |
| Sets the bottom margin in a TextFrame. Write double. More...
|
|
Aspose::Slides::TextVerticalType | get_TextVerticalType () override |
| Returns the type of vertical text. Read Slides::TextVerticalType. More...
|
|
void | set_TextVerticalType (Aspose::Slides::TextVerticalType value) override |
| Sets the type of vertical text. Write Slides::TextVerticalType. More...
|
|
Aspose::Slides::TextAnchorType | get_TextAnchorType () override |
| Returns the text anchor type. Read Slides::TextAnchorType. More...
|
|
void | set_TextAnchorType (Aspose::Slides::TextAnchorType value) override |
| Sets the text anchor type. Write Slides::TextAnchorType. More...
|
|
bool | get_AnchorCenter () override |
| Determines whether or not text box centered inside a cell. Read bool. More...
|
|
void | set_AnchorCenter (bool value) override |
| Determines whether or not text box centered inside a cell. Write bool. More...
|
|
System::SharedPtr< IRow > | get_FirstRow () override |
| Gets first row of cell. Read-only IRow. More...
|
|
System::SharedPtr< IColumn > | get_FirstColumn () override |
| Gets first column of cell. Read-only IColumn. More...
|
|
int32_t | get_ColSpan () override |
| Returns the number of grid columns in the parent table's table grid which shall be spanned by the current cell. This property allows cells to have the appearance of being merged, as they span vertical boundaries of other cells in the table. Read-only int32_t. More...
|
|
int32_t | get_RowSpan () override |
| Returns the number of rows that a merged cell spans. This is used in combination with the vMerge attribute on other cells in order to specify the beginning cell of a horizontal merge. Read-only int32_t. More...
|
|
System::SharedPtr< ITextFrame > | get_TextFrame () override |
| Returns the text frame of a cell. Read-only ITextFrame. More...
|
|
System::SharedPtr< ITable > | get_Table () override |
| Returns the parent Table object for a cell. Read-only ITable. More...
|
|
bool | get_IsMergedCell () override |
| Returns true if the cell is merged with any adjusted cell, false otherwise. Read-only bool. More...
|
|
System::SharedPtr< ICellFormat > | get_CellFormat () override |
| Returns the CellFormat object that contains formatting properties for this cell. Read-only ICellFormat. More...
|
|
System::SharedPtr< IBaseSlide > | get_Slide () override |
| Returns the parent slide of a cell. Read-only IBaseSlide. More...
|
|
System::SharedPtr< IPresentation > | get_Presentation () override |
| Returns the parent presentation of a cell. Read-only IPresentation. More...
|
|
void | SplitByColSpan (int32_t index) override |
| Splits the cell to two cells by index of column. More...
|
|
void | SplitByRowSpan (int32_t index) override |
| Splits the cell to two cells by index of row. More...
|
|
void | SplitByHeight (double height) override |
| Splits the cell by height. More...
|
|
void | SplitByWidth (double width) override |
| Splits the cell by width. More...
|
|
| Object () |
| Creates object. Initializes all internal data structures. More...
|
|
virtual | ~Object () |
| Destroys object. Frees all internal data structures. More...
|
|
| Object (Object const &x) |
| Copy constructor. Doesn't copy anything, really, just initializes new object and enables copy constructing subclasses. More...
|
|
Object & | operator= (Object const &x) |
| Assignment operator. Doesn't copy anything, really, just initializes new object and enables copy constructing subclasses. More...
|
|
Object * | SharedRefAdded () |
| Increments shared reference count. Shouldn't be called directly; instead, use smart pointers or ThisProtector. More...
|
|
int | SharedRefRemovedSafe () |
| Decrements and returns shared reference count. Shouldn't be called directly; instead, use smart pointers or ThisProtector. More...
|
|
int | RemovedSharedRefs (int count) |
| Decreases shared reference count by specified value. More...
|
|
Detail::SmartPtrCounter * | WeakRefAdded () |
| Increments weak reference count. Shouldn't be called directly; instead, use smart pointers or ThisProtector. More...
|
|
void | WeakRefRemoved () |
| Decrements weak reference count. Shouldn't be called directly; instead, use smart pointers or ThisProtector. More...
|
|
Detail::SmartPtrCounter * | GetCounter () |
| Gets reference counter data structure associated with the object. More...
|
|
int | SharedCount () const |
| Gets current value of shared reference counter. More...
|
|
void | Lock () |
| Implements C# lock() statement locking. Call directly or use LockContext sentry object. More...
|
|
void | Unlock () |
| Implements C# lock() statement unlocking. Call directly or use LockContext sentry object. More...
|
|
virtual bool | Equals (ptr obj) |
| Compares objects using C# Object.Equals semantics. More...
|
|
virtual int32_t | GetHashCode () const |
| Analog of C# Object.GetHashCode() method. Enables hashing of custom objects. More...
|
|
virtual String | ToString () const |
| Analog of C# Object.ToString() method. Enables converting custom objects to string. More...
|
|
virtual ptr | MemberwiseClone () const |
| Analog of C# Object.MemberwiseClone() method. Enables cloning custom types. More...
|
|
virtual const TypeInfo & | GetType () const |
| Gets actual type of object. Analog of C# System.Object.GetType() call. More...
|
|
virtual bool | Is (const TypeInfo &targetType) const |
| Check if object represents an instance of type described by targetType. Analog of C# 'is' operator. More...
|
|
virtual void | SetTemplateWeakPtr (uint32_t argument) |
| Set n'th template argument a weak pointer (rather than shared). Allows switching pointers in containers to weak mode. More...
|
|
virtual bool | FastCast (const Details::FastRttiBase &helper, void **out_ptr) const |
| For internal purposes only. More...
|
|
template<> |
bool | ReferenceEquals (String const &str, std::nullptr_t) |
| Specialization of Object::ReferenceEquals for case of string and nullptr. More...
|
|
template<> |
bool | ReferenceEquals (String const &str1, String const &str2) |
| Specialization of Object::ReferenceEquals for case of strings. More...
|
|
|
typedef SmartPtr< Object > | ptr |
| Alias for smart pointer type. More...
|
|
static bool | ReferenceEquals (ptr const &objA, ptr const &objB) |
| Compares objects by reference. More...
|
|
template<typename T > |
static std::enable_if<!IsSmartPtr< T >::value, bool >::type | ReferenceEquals (T const &objA, T const &objB) |
| Compares objects by reference. More...
|
|
template<typename T > |
static std::enable_if<!IsSmartPtr< T >::value, bool >::type | ReferenceEquals (T const &objA, std::nullptr_t) |
| Reference-compares value type object with nullptr. More...
|
|
template<typename T1 , typename T2 > |
static std::enable_if< IsSmartPtr< T1 >::value &&IsSmartPtr< T2 >::value, bool >::type | Equals (T1 const &objA, T2 const &objB) |
| Compares reference type objects in C# style. More...
|
|
template<typename T1 , typename T2 > |
static std::enable_if<!IsSmartPtr< T1 >::value &&!IsSmartPtr< T2 >::value, bool >::type | Equals (T1 const &objA, T2 const &objB) |
| Compares value type objects in C# style. More...
|
|
static const TypeInfo & | Type () |
| Implements C# typeof(System.Object) construct. More...
|
|
template<> |
bool | Equals (float const &objA, float const &objB) |
| Emulates C#-style floating point comparison where two NaNs are considered equal even though according to IEC 60559:1989 NaN is not equal to any value, including NaN. More...
|
|
template<> |
bool | Equals (double const &objA, double const &objB) |
| Emulates C#-style floating point comparison where two NaNs are considered equal even though according to IEC 60559:1989 NaN is not equal to any value, including NaN. More...
|
|
Represents a cell of a table.